summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1999-07-02 18:37:11 +0000
committerderaadt <deraadt@openbsd.org>1999-07-02 18:37:11 +0000
commit6a7c2d872079461bca3288988d0bf9264b4e4082 (patch)
treee2ee450df9bb5a81ee1ee78161699ee5a193b0dd
parent- rnd(4) does not exist, it is really random(4) (diff)
downloadwireguard-openbsd-6a7c2d872079461bca3288988d0bf9264b4e4082.tar.xz
wireguard-openbsd-6a7c2d872079461bca3288988d0bf9264b4e4082.zip
ambigious else
-rw-r--r--usr.bin/ctags/ctags.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/ctags/ctags.c b/usr.bin/ctags/ctags.c
index aa4aa1c6268..0e4fc08a198 100644
--- a/usr.bin/ctags/ctags.c
+++ b/usr.bin/ctags/ctags.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ctags.c,v 1.3 1997/01/15 23:42:23 millert Exp $ */
+/* $OpenBSD: ctags.c,v 1.4 1999/07/02 18:37:11 deraadt Exp $ */
/* $NetBSD: ctags.c,v 1.4 1995/09/02 05:57:23 jtc Exp $ */
/*
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)ctags.c 8.4 (Berkeley) 2/7/95";
#endif
-static char rcsid[] = "$OpenBSD: ctags.c,v 1.3 1997/01/15 23:42:23 millert Exp $";
+static char rcsid[] = "$OpenBSD: ctags.c,v 1.4 1999/07/02 18:37:11 deraadt Exp $";
#endif /* not lint */
#include <err.h>
@@ -154,7 +154,7 @@ usage: (void)fprintf(stderr,
(void)fclose(inf);
}
- if (head)
+ if (head) {
if (xflag)
put_entries(head);
else {
@@ -178,6 +178,7 @@ usage: (void)fprintf(stderr,
system(cmd);
}
}
+ }
exit(exit_val);
}