X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/3a90ea0acdc1414904959e4629c9c255be792e29..027428eb1d7524815d9b29f825033d7902258db5:/options.c diff --git a/options.c b/options.c index a05b7587..c34047d6 100644 --- a/options.c +++ b/options.c @@ -200,7 +200,7 @@ static void print_rsync_version(enum logcode f) rprintf(f, " %sinplace, %sIPv6, %d-bit system inums, %d-bit internal inums\n", have_inplace, ipv6, (int) (sizeof dumstat->st_ino * 8), - (int) (sizeof (uint64) * 8)); + (int) (sizeof (int64) * 8)); #ifdef MAINTAINER_MODE rprintf(f, " panic action: \"%s\"\n", get_panic_action()); @@ -857,8 +857,6 @@ int parse_arguments(int *argc, const char ***argv, int frommain) if (relative_paths < 0) relative_paths = files_from? 1 : 0; - if (!relative_paths) - implied_dirs = 0; *argv = poptGetArgs(pc); *argc = count_args(*argv); @@ -1240,7 +1238,7 @@ void server_options(char **args,int *argc) if (!relative_paths) args[ac++] = "--no-relative"; } - if (relative_paths && !implied_dirs && !am_sender) + if (!implied_dirs && !am_sender) args[ac++] = "--no-implied-dirs"; *argc = ac;