aboutsummaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-02-06 18:51:25 +0000
committerWayne Davison <wayned@samba.org>2006-02-06 18:51:25 +0000
commita6a276027c059e8dbf104f3472de3ab533f92941 (patch)
treed46e95508cfd40ce781c1b1c4f0667f6458a8ac2 /options.c
parent45b79c89591f1fe1aafc18dc0dabadba5381c3f5 (diff)
downloadandroid_external_rsync-a6a276027c059e8dbf104f3472de3ab533f92941.tar.gz
android_external_rsync-a6a276027c059e8dbf104f3472de3ab533f92941.tar.bz2
android_external_rsync-a6a276027c059e8dbf104f3472de3ab533f92941.zip
Changed --8-bit to --8-bit-output.
Diffstat (limited to 'options.c')
-rw-r--r--options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/options.c b/options.c
index 55395cb5..30af80df 100644
--- a/options.c
+++ b/options.c
@@ -355,7 +355,7 @@ void usage(enum logcode F)
rprintf(F," --sockopts=OPTIONS specify custom TCP options\n");
rprintf(F," --blocking-io use blocking I/O for the remote shell\n");
rprintf(F," --stats give some file-transfer stats\n");
- rprintf(F," -8, --8-bit leave high-bit chars unescaped in output\n");
+ rprintf(F," -8, --8-bit-output leave high-bit chars unescaped in output\n");
rprintf(F," -h, --human-readable output numbers in a human-readable format\n");
rprintf(F," --si like human-readable, but use powers of 1000\n");
rprintf(F," --progress show progress during transfer\n");
@@ -512,7 +512,7 @@ static struct poptOption long_options[] = {
{"ipv4", '4', POPT_ARG_VAL, &default_af_hint, AF_INET, 0, 0 },
{"ipv6", '6', POPT_ARG_VAL, &default_af_hint, AF_INET6, 0, 0 },
#endif
- {"8-bit", '8', POPT_ARG_NONE, &allow_8bit_chars, 0, 0, 0 },
+ {"8-bit-output", '8', POPT_ARG_NONE, &allow_8bit_chars, 0, 0, 0 },
{"address", 0, POPT_ARG_STRING, &bind_address, 0, 0, 0 },
{"port", 0, POPT_ARG_INT, &rsync_port, 0, 0, 0 },
{"sockopts", 0, POPT_ARG_STRING, &sockopts, 0, 0, 0 },