summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2007-09-05 08:58:35 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2007-09-05 08:58:35 +0000
commitf3e56da4b69479ec8387e43a236f45f2e574c1ac (patch)
tree819c2cbd15e68d01b01eb0772033b3b62d5936ff /usr.bin
parent1074ccbebd18c34270e1184e07b0bd2173585f78 (diff)
Missing colon in optsring for 'B'
From Jan Niemann <jan.niemann@gns-systems.de>
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/xinstall/xinstall.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/xinstall/xinstall.c b/usr.bin/xinstall/xinstall.c
index d073faddcb9..53fa6a70495 100644
--- a/usr.bin/xinstall/xinstall.c
+++ b/usr.bin/xinstall/xinstall.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: xinstall.c,v 1.46 2007/08/06 19:16:06 sobrado Exp $ */
+/* $OpenBSD: xinstall.c,v 1.47 2007/09/05 08:58:34 jsg Exp $ */
/* $NetBSD: xinstall.c,v 1.9 1995/12/20 10:25:17 jonathan Exp $ */
/*
@@ -40,7 +40,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)xinstall.c 8.1 (Berkeley) 7/21/93";
#endif
-static char rcsid[] = "$OpenBSD: xinstall.c,v 1.46 2007/08/06 19:16:06 sobrado Exp $";
+static char rcsid[] = "$OpenBSD: xinstall.c,v 1.47 2007/09/05 08:58:34 jsg Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -100,7 +100,7 @@ main(int argc, char *argv[])
char *flags, *to_name, *group = NULL, *owner = NULL;
iflags = 0;
- while ((ch = getopt(argc, argv, "BbCcdf:g:m:o:pSs")) != -1)
+ while ((ch = getopt(argc, argv, "B:bCcdf:g:m:o:pSs")) != -1)
switch((char)ch) {
case 'C':
docompare = 1;