Displaying 9 results from an estimated 9 matches for "numeric_id".
Did you mean:
numeric_ids
2008 Feb 20
1
[PATCH] build fix without iconv support
...t)
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_chroot ? lp_numeric_ids(i) != False : lp_numeric_ids(i) == True))
diff --git a/options.c b/options.c
index 7f69bd2..75ceeeb 100644
--- a/options.c
+++ b/options.c
@@ -1137,7 +1137,9 @@ int parse_arguments(int *argc_p, const char ***argv_p, int frommain)
break;
case OP...
2011 Mar 17
8
[Bug 8020] New: --acls does not honor --numeric-ids if UIDs do not match
https://bugzilla.samba.org/show_bug.cgi?id=8020
Summary: --acls does not honor --numeric-ids if UIDs do not
match
Product: rsync
Version: 3.0.7
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P5
Component: core
AssignedTo: wayned at samba.org
2006 May 24
0
rsync connection limit
...o_stats = 0;
int do_progress = 0;
+int do_timeout = 0;
int keep_partial = 0;
int safe_symlinks = 0;
int copy_unsafe_links = 0;
@@ -506,6 +507,7 @@
{"from0", '0', POPT_ARG_NONE, &eol_nulls, 0, 0, 0},
{"numeric-ids", 0, POPT_ARG_NONE, &numeric_ids, 0, 0, 0 },
{"timeout", 0, POPT_ARG_INT, &io_timeout, 0, 0, 0 },
+ {"contimeout", 0, POPT_ARG_INT, &do_timeout, 0, 0, 0 },
{"rsh", 'e', POPT_ARG_STRING, &shell_cmd, 0, 0, 0 },
{"rsync-path",...
2004 Oct 05
0
new option implemented: --delete-mdays
...0, POPT_ARG_NONE, 0, OPT_DELETE_EXCLUDED, 0, 0 },
- {"delete-mdays", 0, POPT_ARG_INT, &delete_mdays, 0, 0, 0 },
{"force", 0, POPT_ARG_NONE, &force_delete, 0, 0, 0 },
{"numeric-ids", 0, POPT_ARG_NONE, &numeric_ids, 0, 0, 0 },
{"exclude", 0, POPT_ARG_STRING, 0, OPT_EXCLUDE, 0, 0 },
{"include", 0, POPT_ARG_STRING, 0, OPT_INCLUDE, 0, 0 },
{"exclude-from", 0, POPT_ARG_STRING, 0, OPT_EXCLUDE_FROM, 0, 0 },
--...
2006 Nov 29
0
[761] trunk/wxruby2: Initial commit of HtmlHelpController & HelpController support + doc,
...ode of the
+contents:
+
+<pre>
+ <ul>
+ <li>
+        <object type="text/sitemap">
+ <param name="Name" value="@topic name@">
+ <param name="ID" value=@numeric_id@>
+ <param name="Local" value="@filename.htm@">
+ </object>
+ <li>
+ <object type="text/sitemap">
+ <param name="Name" value="@topic name@">
+ <param name="ID" value=@numeric_id@>...
2017 Apr 05
0
Transfer hangs, both sides waiting on receive
...#7 0x00007f9a71e37f6c in do_server_sender (argv=<optimized out>, argc=<optimized out>, f_out=3, f_in=3) at main.c:840
#8 start_server (f_in=3, f_out=3, argc=2, argv=0x7f9a7302f240) at main.c:1107
#9 0x00007f9a71e5a34e in rsync_module (f_in=3, f_out=3, i=0, addr=0x7f9a72098518 <numeric_ids> "\377\377\377\377",
host=0x7f9a72098c80 <name_buf> "host-a.example.com") at clientserver.c:1009
#10 0x00007f9a71e5b260 in start_daemon (f_in=3, f_out=3) at clientserver.c:1100
#11 0x00007f9a71e4f5d1 in start_accept_loop (port=4, fn=0x7ffe7c1aa160, fn at entry=...
2004 Jan 17
1
--delete-sent-files (AKA --move-files)
...NONE, 0, OPT_DELETE_EXCLUDED, 0, 0 },
+ {"delete-sent-files",0, POPT_ARG_NONE, 0, OPT_DELETE_SENT_FILES, 0, 0 },
{"force", 0, POPT_ARG_NONE, &force_delete, 0, 0, 0 },
{"numeric-ids", 0, POPT_ARG_NONE, &numeric_ids, 0, 0, 0 },
{"exclude", 0, POPT_ARG_STRING, 0, OPT_EXCLUDE, 0, 0 },
@@ -498,6 +502,11 @@ int parse_arguments(int *argc, const cha
delete_mode = 1;
break;
+ case OPT_DELETE_SENT_FILES:
+ delete_sent_files = 1;
+ need_messages_from_generator = 1;
+...
2004 Apr 09
3
include/exclude bug in rsync 2.6.0/2.6.1pre1
...me, ent, name_is_dir, type);
+ return (ent->include ? 1 : -1);
}
}
diff -ru rsync-2.6.1pre-1/flist.c rsync-2.6.1pre-1J/flist.c
--- rsync-2.6.1pre-1/flist.c 2004-02-11 03:48:58.000000000 +0100
+++ rsync-2.6.1pre-1J/flist.c 2004-04-08 10:50:46.000000000 +0200
@@ -39,6 +39,7 @@
extern int numeric_ids;
extern int cvs_exclude;
+extern const char *rsync_exclude;
extern int recurse;
extern char curr_dir[MAXPATHLEN];
@@ -66,6 +67,7 @@
extern struct exclude_struct **exclude_list;
extern struct exclude_struct **server_exclude_list;
extern struct exclude_struct **local_exclude_list;
+static...
2007 Sep 22
0
rsync build on IA64 using icc
...): remark #1419: external declaration in primary source file
extern int module_id;
^
flist.c(35): remark #1419: external declaration in primary source file
extern int ignore_errors;
^
flist.c(36): remark #1419: external declaration in primary source file
extern int numeric_ids;
^
flist.c(37): remark #1419: external declaration in primary source file
extern int recurse;
^
flist.c(38): remark #1419: external declaration in primary source file
extern int xfer_dirs;
^
flist.c(39): remark #1419: external declaration in primary so...