diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-08-02 20:01:13 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-08-02 20:01:13 +0000 |
commit | 5c8f2e2e540f99f91ac3b8eb8d2091262e7570bd (patch) | |
tree | 7aa608f3cbbae762420d3bdcc43da35d3a354ab9 /usr.bin | |
parent | c7ac62360d677f281941a2dbc128fd1bdbba99f4 (diff) |
Add missing closing bracket in usage
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/rsync/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rsync/main.c b/usr.bin/rsync/main.c index 36ed383345b..8aeca786cda 100644 --- a/usr.bin/rsync/main.c +++ b/usr.bin/rsync/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.64 2022/08/02 18:09:20 job Exp $ */ +/* $OpenBSD: main.c,v 1.65 2022/08/02 20:01:12 tb Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -630,7 +630,7 @@ basedir: usage: fprintf(stderr, "usage: %s" " [-aDglnoprtvx] [-e program] [--address=sourceaddr]\n" - "\t[--contimeout=seconds [--compare-dest=dir] [--del] [--exclude]\n" + "\t[--contimeout=seconds] [--compare-dest=dir] [--del] [--exclude]\n" "\t[--exclude-from=file] [--include] [--include-from=file]\n" "\t[--no-motd] [--numeric-ids] [--port=portnumber]\n" "\t[--rsync-path=program] [--timeout=seconds] [--version]\n" |