Displaying 7 results from an estimated 7 matches for "rerr_unsupport".
Did you mean:
rerr_unsupported
2008 Feb 20
1
[PATCH] build fix without iconv support
diff --git a/clientserver.c b/clientserver.c
index 2d7c28f..694a72d 100644
--- a/clientserver.c
+++ b/clientserver.c
@@ -806,6 +806,7 @@ static int rsync_module(int f_in, int f_out, int i, char *addr, char *host)
exit_cleanup(RERR_UNSUPPORTED);
}
+#ifdef ICONV_OPTION
if (!iconv_opt) {
if (ic_send != (iconv_t)-1) {
iconv_close(ic_send);
@@ -816,6 +817,7 @@ static int rsync_module(int f_in, int f_out, int i, char *addr, char *host)
ic_recv = (iconv_t)-1;
}
}
+#endif
if (!numeric_ids
&& (use_ch...
2003 Oct 25
1
Trivial documentation patch
...tocol incompatibility
-dit(bf(RERR_FILESELECT 3)) Errors selecting input/output files, dirs
+dit(bf(RERR_SYNTAX 1)) Syntax or usage error
+dit(bf(RERR_PROTOCOL 2)) Protocol incompatibility
+dit(bf(RERR_FILESELECT 3)) Errors selecting input/output files, dirs
dit(bf(RERR_UNSUPPORTED 4)) Requested action not supported: an attempt
was made to manipulate 64-bit files on a platform that cannot support
them; or an option was speciifed that is supported by the client and
not by the server.
+dit(bf(RERR_STARTCLIENT 5)) Error starting client-server protocol
+
dit(bf(RERR_...
2003 Mar 21
2
x>>32 warning in io.c
I download rsync.2.5.6, configure, make clean, but make gives this warning:
"io.c", line 653: warning: shift count negative or too big: >> 32
"io.c", line 653: warning: shift count negative or too big: >> 32
"io.c", line 653: warning: shift count negative or too big: >> 32
"io.c", line 653: warning: shift count negative or too big:
2020 Feb 09
2
[RFC PATCH] Add SHA1 support
...me, int len)
return CSUM_MD5;
if (len == 4 && strncasecmp(name, "none", 4) == 0)
return CSUM_NONE;
+ if (len == 4 && strncasecmp(name, "sha1", 4) == 0)
+ return CSUM_SHA1;
rprintf(FERROR, "unknown checksum name: %s\n", name);
exit_cleanup(RERR_UNSUPPORTED);
@@ -88,6 +93,8 @@ int csum_len_for_type(int cst, BOOL flist_csum)
return MD4_DIGEST_LEN;
case CSUM_MD5:
return MD5_DIGEST_LEN;
+ case CSUM_SHA1:
+ return SHA1_DIGEST_LEN;
default: /* paranoia to prevent missing case values */
exit_cleanup(RERR_UNSUPPORTED);
}
@@ -121,30 +1...
2012 Jun 09
2
[patch] NFSv4/ZFS ACLs
This is a PoC patch for NFSv4/ZFS ACLs.
The objective of the patch is that rsync --acls support NFSv4/ZFS ACLs
without requiring a new command line option
NFSv4 ACLs can't be represented using POSIX draft ACLs, if an NFSv4 ACL is
present a separate POSIX draft ACL will not be present and there are new
APIs
to access NFSv4 ACLs. So we need to distinguish between NFSv4 ACLs and
POSIX
ACLs in
2002 Nov 11
0
Regular Expression support
...+364,20 @@
l = strlen(pattern);
if (l == 0) continue;
+
+ if (exclude_list[i]->use_real_regexp) {
+ if (remote_version < 25) {
+ rprintf(FERROR,"remote rsync does not support regular expressions syntax - aborting\n");
+ exit_cleanup(RERR_UNSUPPORTED);
+ }
+ if (exclude_list[i]->include) {
+ write_int(f,l+3);
+ write_buf(f,"+R ",3);
+ }else{
+ write_int(f,l+3);
+ write_buf(f,"-R ",3);
+ }
+...
2004 Mar 10
4
HFS+ resource forks: WIP patch included
...ODE:
+ if ( (strcmp(hfs_mode,"none") != 0) &&
+ (strcmp(hfs_mode,"darsplit") != 0) ) {
+ snprintf(err_buf, sizeof err_buf,
+ "unsupported hfs-mode: \"%s\"\n",hfs_mode);
+ rprintf(FERROR, "ERROR: %s", err_buf);
+ exit_cleanup(RERR_UNSUPPORTED);
+ }
break;
case 'h':
diff -u rsync-2.6.0/proto.h rsync-2.6.0-dar/proto.h
--- rsync-2.6.0/proto.h Sat Dec 6 16:07:27 2003
+++ rsync-2.6.0-dar/proto.h Mon Mar 8 13:37:07 2004
@@ -77,8 +77,28 @@
int link_stat(const char *path, STRUCT_STAT * buffer);
struct file_struct *make_...