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 0e978d99de2f054c1a14d91a60f35258eaa8f733..c5a6a36f44e7eb2296e783c2873a064f1edf0606 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 4767406bc106d2cda2d8260d7d4d7ba957b95b0a..60d3da9a0b03a816bb8e488d3a9caab96a4a9815 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 32dd4010de3390978f3989182ab062077bfe0092..0677edc85be4b0dd60bb811b4589a2d1d6168661 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 a4eb501d0775d62404aa801bd7cbf0419d84cdb6..cf70d05f3b4d5c3b3e8f800695b1906b9e878407 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 c62677706f4230779e8303127c704c5e9a4cd0b6..548f699da68c232337e99cfd0a77bd66102349ab 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 12c219ba3a633646df7a6b7f8de8ffd44466f59e..9b5a42e74d496b049d91dc38180a753672427458 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");