Fix some fuzz in the --help text hunks.
authorWayne Davison <wayned@samba.org>
Mon, 26 Jul 2004 06:36:25 +0000 (06:36 +0000)
committerWayne Davison <wayned@samba.org>
Mon, 26 Jul 2004 06:36:25 +0000 (06:36 +0000)
date-only.diff
fsync.diff
ignore-case.diff
link-by-hash.diff
links-depth.diff
openssl-support.diff

index 0e978d9..c5a6a36 100644 (file)
@@ -50,7 +50,7 @@ Jeremy Bornstein
    rprintf(F,"     --size-only             ignore mod time for quick check (use size)\n");
 +  rprintf(F,"     --date-only             ignore size for quick check (use mod time)\n");
    rprintf(F,"     --modify-window=NUM     compare mod times with reduced accuracy\n");
-   rprintf(F," -T  --temp-dir=DIR          create temporary files in directory DIR\n");
+   rprintf(F," -T, --temp-dir=DIR          create temporary files in directory DIR\n");
    rprintf(F,"     --compare-dest=DIR      also compare destination files relative to DIR\n");
 @@ -327,6 +329,7 @@ static struct poptOption long_options[] 
    {"password-file",    0,  POPT_ARG_STRING, &password_file, 0, 0, 0 },
index 4767406..60d3da9 100644 (file)
@@ -17,7 +17,7 @@ to be called on every file we write.
    rprintf(F,"     --suffix=SUFFIX         backup suffix (default %s w/o --backup-dir)\n",BACKUP_SUFFIX);
 +  rprintf(F,"     --fsync                 fsync every written file\n");
    rprintf(F," -u, --update                update only (don't overwrite newer files)\n");
-   rprintf(F,"     --inplace               update the destination file inplace (see man page)\n");
+   rprintf(F,"     --inplace               update destination files inplace (SEE MAN PAGE)\n");
    rprintf(F," -K, --keep-dirlinks         treat symlinked dir on receiver as dir\n");
 @@ -343,6 +345,7 @@ static struct poptOption long_options[] 
    {"safe-links",       0,  POPT_ARG_NONE,   &safe_symlinks, 0, 0, 0 },
index 32dd401..0677edc 100644 (file)
@@ -73,7 +73,7 @@ NOTE: patch updated for latest CVS source by Wayne Davison, but UNTESTED!
 @@ -285,6 +286,7 @@ void usage(enum logcode F)
    rprintf(F,"     --include-from=FILE     don't exclude patterns listed in FILE\n");
    rprintf(F,"     --files-from=FILE       read FILE for list of source-file names\n");
-   rprintf(F," -0  --from0                 all *-from file lists are delimited by nulls\n");
+   rprintf(F," -0, --from0                 all *-from file lists are delimited by nulls\n");
 +  rprintf(F,"     --ignore-case           ignore case when comparing filenames\n");
    rprintf(F,"     --version               print version number\n");
    rprintf(F,"     --daemon                run as an rsync daemon\n");
index a4eb501..cf70d05 100644 (file)
@@ -378,7 +378,7 @@ the file's name.
  int rsync_port = RSYNC_PORT;
  int link_dest = 0;
 @@ -276,6 +277,7 @@ void usage(enum logcode F)
-   rprintf(F," -T  --temp-dir=DIR          create temporary files in directory DIR\n");
+   rprintf(F," -T, --temp-dir=DIR          create temporary files in directory DIR\n");
    rprintf(F,"     --compare-dest=DIR      also compare destination files relative to DIR\n");
    rprintf(F,"     --link-dest=DIR         create hardlinks to DIR for unchanged files\n");
 +  rprintf(F,"     --link-by-hash=DIR      create hardlinks by hash to DIR for regular files\n");
index c626777..548f699 100644 (file)
@@ -73,7 +73,7 @@ in this modified version.
  int preserve_perms = 0;
  int preserve_devices = 0;
 @@ -242,6 +243,7 @@ void usage(enum logcode F)
-   rprintf(F,"     --inplace               update the destination file inplace (see man page)\n");
+   rprintf(F,"     --inplace               update destination files inplace (SEE MAN PAGE)\n");
    rprintf(F," -K, --keep-dirlinks         treat symlinked dir on receiver as dir\n");
    rprintf(F," -l, --links                 copy symlinks as symlinks\n");
 +  rprintf(F,"     --links-depth=NUM       follow symlinks up to NUM depth\n");
index 12c219b..9b5a42e 100644 (file)
@@ -341,8 +341,8 @@ can't say if I've left any cleanup/compatibility errors in the code.
        rprintf(f, "              panic action: \"%s\"\n",
                get_panic_action());
 @@ -305,6 +318,13 @@ void usage(enum logcode F)
-   rprintf(F," -4  --ipv4                  prefer IPv4\n");
-   rprintf(F," -6  --ipv6                  prefer IPv6\n");
+   rprintf(F," -4, --ipv4                  prefer IPv4\n");
+   rprintf(F," -6, --ipv6                  prefer IPv6\n");
  #endif
 +#ifdef HAVE_OPENSSL
 +  rprintf(F,"     --ssl                   allow socket connections to use SSL\n");