X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/8dcf93356e23556b1441d4df195c11aeaa35ab6e..71b291d71b70cd09865882235fca3a8d35edc6b3:/options.c diff --git a/options.c b/options.c index 67349ac2..26dfd769 100644 --- a/options.c +++ b/options.c @@ -688,6 +688,12 @@ int parse_arguments(int *argc, const char ***argv, int frommain) files_from = alloc_sanitize_path(files_from, curr_dir); } + if (daemon_opt) { + daemon_opt = 0; + am_daemon = 1; + return 1; + } + if (!backup_suffix) backup_suffix = backup_dir ? "" : BACKUP_SUFFIX; backup_suffix_len = strlen(backup_suffix); @@ -750,9 +756,6 @@ int parse_arguments(int *argc, const char ***argv, int frommain) } } - if (daemon_opt) - am_daemon = 1; - return 1; }