search for: nuar

Displaying 4 results from an estimated 4 matches for "nuar".

Did you mean: near
2003 Apr 15
0
Patch for stderr logging
...of California, San Diego jhriv@ucsd.edu Academic Computing Services http (((( TEL: +1 858 534 4062 9500 Gilman Drive sbih.org ( )(:[ FAX: +1 858 534 7018 La Jolla CA 92093-0110 spiders.html (((( -------------- next part -------------- diff -Nuar rsync-2.5.6/cleanup.c rsync-2.5.6.new/cleanup.c --- rsync-2.5.6/cleanup.c Sun Jan 26 19:35:08 2003 +++ rsync-2.5.6.new/cleanup.c Sun Apr 13 22:04:54 2003 @@ -26,7 +26,7 @@ * shutdown() of socket connections. This eliminates the abortive * TCP RST sent by a Winsock-based system when the close()...
2017 Apr 04
2
Code inconsistency between release version and git in rsync-3.0.9
There are huge differences between source files in the version 3.0.9 released as a tar.gz and source files in git. I would assume that the released version would correspond to the version in git but with 3.0.9 it is not like that. In 3.1.0 the released and git versions are more or less the same. So my question is, from what source files was the 3.0.9 version created? Thank you. Regards, Michal
2017 Apr 04
0
Code inconsistency between release version and git in rsync-3.0.9
.../tmp $ tar xvf .../rsync-3.0.9.tar.gz $ tar xvf .../rsync-3.1.0.tar.gz $ git clone --bare git://git.samba.org/rsync.git /tmp/rsync-git-bare/ $ GIT_DIR=/tmp/rsync-git-bare git worktree add /tmp/rsync-git-3.0.9 v3.0.9 $ GIT_DIR=/tmp/rsync-git-bare git worktree add /tmp/rsync-git-3.1.0 v3.1.0 $ diff -Nuar rsync-git-3.0.9/ rsync-3.0.9/ --exclude .git --exclude-from rsync-git-3.0.9/.gitignore >rsync-git__rsync-3.0.9.diff $ diff -Nuar rsync-git-3.1.0/ rsync-3.1.0/ --exclude .git --exclude-from rsync-git-3.1.0/.gitignore >rsync-git__rsync-3.1.0.diff $ diffstat <rsync-git__rsync-3.0.9.diff prot...
2014 Nov 13
1
Static build failure
...following build failure: module-dir.c: In function 'module_file_get_name': module-dir.c:624:20: error: 'MODULE_SUFFIX' undeclared (first use in this function) p = strstr(fname, MODULE_SUFFIX); ^ The following somewhat inelegant patch fixes the problem. diff -Nuar dovecot-2.2.15-orig/src/lib/module-dir.c dovecot-2.2.15/src/lib/module-dir.c --- dovecot-2.2.15-orig/src/lib/module-dir.c 2014-10-18 00:10:15.000000000 +0300 +++ dovecot-2.2.15/src/lib/module-dir.c 2014-11-13 19:27:29.417786313 +0200 @@ -621,7 +621,11 @@ if (*p == '_') fname = p + 1;...