Displaying 10 results from an estimated 10 matches for "fnone".
Did you mean:
none
2008 May 08
1
Patch to not modify files in place unless "--inplace" option specified
...mode, del_opts | DEL_FOR_SYMLINK) != 0)
@@ -1572,18 +1583,20 @@
set_file_attrs(fname, file, NULL, NULL, 0);
if (itemizing) {
itemize(fname, file, ndx, statret, &sx,
- ITEM_LOCAL_CHANGE|ITEM_REPORT_CHANGE, 0, NULL);
+ ITEM_LOCAL_CHANGE|iflags, 0, NULL);
}
- if (code != FNONE && verbose)
+ if ((iflags & ITEM_REPORT_CHANGE) && code != FNONE && verbose)
rprintf(code, "%s -> %s\n", fname, sl);
#ifdef SUPPORT_HARD_LINKS
if (preserve_hard_links && F_IS_HLINKED(file))
finish_hard_link(file, fname, ndx, NULL, it...
2006 Dec 10
1
Rsync 2.6.9 Develops Conflict Between --stats, I think --delete-after and Local Filesystem Replication
Hi all,
Well, yeah, that's it, really. :-) Try it. Works consistently, on Doze
and Linux here ...
# rsync -vvrlHSPtiypogD --stats --numeric-ids --delete-after --force --
partial-dir=.partial /tmp/ /var/tmp/
[...show stats...]
unknown message 4:1 [generator]
rsync error: error in rsync protocol data stream (code 12) at io.c(307)
[generator=2.6.9]
rsync: connection unexpectedly closed (26
2002 Sep 19
0
Unexpected Tag Errors - Solution
...e data...)
Could somebody please explain what a "tag" is (looking through the code it's
derived from the first 4bytes of each read_unbuffered() call and I think its
to do with multiplexing, but what are all of the multiplexing "sub-channels"
used for? (seem to be defined as FNONE=0, FERROR=1, FINFO=2, FLOG=3).
Has any body else encountered these errors?
Any advise much appreciated!
Bradley Kite
Software Developer/Data Management Specialist
alchemetrics - smarter data, faster
Tel: 0118 902 9043 (direct line)
Email: bradley.kite@alchemetrics.co.uk
Web: http://www.alchemetr...
2019 Sep 06
3
[Bug 3067] New: Fails to unlink ControlMaster socket early enough, confuses other clients
https://bugzilla.mindrot.org/show_bug.cgi?id=3067
Bug ID: 3067
Summary: Fails to unlink ControlMaster socket early enough,
confuses other clients
Product: Portable OpenSSH
Version: 7.9p1
Hardware: Other
OS: Linux
Status: NEW
Severity: normal
Priority: P5
Component:
2002 Aug 16
1
unexpected tag errors
Hi All.
I've had this problem with rsync, the solution to which has been
really evasive to me. Any help would be appreciated.
I'm running rsync 2.5.5 between 2 SCO boxes and get random "unexpected tag"
errors. Sometimes the unexpected tag is positive, other times negetive,
and a retry of rsync usually manages to work the second or third time round.
The disks are identical in
2002 Nov 17
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS (update)
...: 'T';
+#endif
if (S_ISLNK(mode)) perms[0] = 'l';
if (S_ISDIR(mode)) perms[0] = 'd';
diff -urp --new-file oldrsync/rsync.h newrsync/rsync.h
--- oldrsync/rsync.h Tue Aug 27 12:03:52 2002
+++ newrsync/rsync.h Tue Aug 27 15:44:38 2002
@@ -330,6 +330,10 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2
#define INADDR_NONE 0xffffffff
#endif
+#ifndef IN_LOOPBACKNET
+#define IN_LOOPBACKNET 127
+#endif
+
struct file_struct {
unsigned flags;
time_t modtime;
@@ -614,7 +618,7 @@ inet_ntop(int af, const void *src, char
#endif /* !HAVE_INET_NTOP */
#ifndef HAVE_INET_PTON...
2002 Sep 06
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS
...: 'T';
+#endif
if (S_ISLNK(mode)) perms[0] = 'l';
if (S_ISDIR(mode)) perms[0] = 'd';
diff -urp --new-file oldrsync/rsync.h newrsync/rsync.h
--- oldrsync/rsync.h Tue Aug 27 12:03:52 2002
+++ newrsync/rsync.h Tue Aug 27 15:44:38 2002
@@ -330,6 +330,10 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2
#define INADDR_NONE 0xffffffff
#endif
+#ifndef IN_LOOPBACKNET
+#define IN_LOOPBACKNET 127
+#endif
+
struct file_struct {
unsigned flags;
time_t modtime;
@@ -614,7 +618,7 @@ inet_ntop(int af, const void *src, char
#endif /* !HAVE_INET_NTOP */
#ifndef HAVE_INET_PTON...
2002 Oct 14
0
[PATCH] Patches to rsync-2.5.5 for Stratus VOS (resend)
...: 'T';
+#endif
if (S_ISLNK(mode)) perms[0] = 'l';
if (S_ISDIR(mode)) perms[0] = 'd';
diff -urp --new-file oldrsync/rsync.h newrsync/rsync.h
--- oldrsync/rsync.h Tue Aug 27 12:03:52 2002
+++ newrsync/rsync.h Tue Aug 27 15:44:38 2002
@@ -330,6 +330,10 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2
#define INADDR_NONE 0xffffffff
#endif
+#ifndef IN_LOOPBACKNET
+#define IN_LOOPBACKNET 127
+#endif
+
struct file_struct {
unsigned flags;
time_t modtime;
@@ -614,7 +618,7 @@ inet_ntop(int af, const void *src, char
#endif /* !HAVE_INET_NTOP */
#ifndef HAVE_INET_PTON...
2003 Jun 25
3
patch draft for extended attributes on linux
...C) 2001, 2002 by Martin Pool <mbp@samba.org>
+ Copyright (C) 2001-2003 by Martin Pool <mbp@samba.org>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -86,6 +86,10 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2
#include "config.h"
+#define SUPPORT_LINKS HAVE_READLINK
+#define SUPPORT_HARD_LINKS HAVE_LINK
+#define SUPPORT_XATTRS HAVE_LGETXATTR
+
/* The default RSYNC_RSH is always set in config.h, either to "remsh",
* "rsh", or otherwise something s...
2002 Nov 20
0
[PATCH] Updated patch to rsync for Stratus VOS
...'t' : 'T';
+#endif
if (S_ISLNK(mode)) perms[0] = 'l';
if (S_ISDIR(mode)) perms[0] = 'd';
diff -urp oldrsync/rsync.h newrsync/rsync.h
--- oldrsync/rsync.h Sun Nov 17 05:00:06 2002
+++ newrsync/rsync.h Sun Nov 17 05:00:19 2002
@@ -331,6 +331,10 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2
#define INADDR_NONE 0xffffffff
#endif
+#ifndef IN_LOOPBACKNET
+#define IN_LOOPBACKNET 127
+#endif
+
struct file_struct {
unsigned flags;
time_t modtime;
@@ -615,7 +619,7 @@ inet_ntop(int af, const void *src, char
#endif /* !HAVE_INET_NTOP */
#ifndef HAVE_INET_PTON...