summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorflorian <florian@openbsd.org>2019-02-14 18:28:23 +0000
committerflorian <florian@openbsd.org>2019-02-14 18:28:23 +0000
commitbf270584e3226a10eef20e161d1055b84d2fff3c (patch)
tree382db48f366fe5b4e4cdc1365b6d747fa922caa2
parentsync with kristaps, commit f77ca97c9f2ee916ee7f551d7b37676c1bd06b55 (diff)
downloadwireguard-openbsd-bf270584e3226a10eef20e161d1055b84d2fff3c.tar.xz
wireguard-openbsd-bf270584e3226a10eef20e161d1055b84d2fff3c.zip
sync with kristaps, commit ab90d923f89b06308190d9fe371c7663c077e2bd
-o isn't finished yet...
-rw-r--r--usr.bin/rsync/main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/rsync/main.c b/usr.bin/rsync/main.c
index d9def41c79f..9bee24424c0 100644
--- a/usr.bin/rsync/main.c
+++ b/usr.bin/rsync/main.c
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.13 2019/02/14 18:26:52 florian Exp $ */
+/* $Id: main.c,v 1.14 2019/02/14 18:28:23 florian Exp $ */
/*
* Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -325,6 +325,7 @@ main(int argc, char *argv[])
opts.dry_run = 1;
break;
case 'o':
+ /* XXX: not finished yet. */
opts.preserve_uids = 1;
break;
case 'p':
@@ -458,7 +459,7 @@ main(int argc, char *argv[])
close(fds[0]);
return c ? EXIT_SUCCESS : EXIT_FAILURE;
usage:
- fprintf(stderr, "usage: %s [-glnoprtv] "
+ fprintf(stderr, "usage: %s [-glnprtv] "
"[-e ssh-prog] [--delete] [--rsync-path=prog] src ... dst\n",
getprogname());
return EXIT_FAILURE;