summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1996-06-26 07:08:36 +0000
committerderaadt <deraadt@openbsd.org>1996-06-26 07:08:36 +0000
commit74b69f87a52676c549cb5b983ac684d96d3fa717 (patch)
treed1beb51cd8379144ec55895e915f46eac0ebd8e1
parenthandle $OpenBSD$ rcsid... using uname too! (diff)
downloadwireguard-openbsd-74b69f87a52676c549cb5b983ac684d96d3fa717.tar.xz
wireguard-openbsd-74b69f87a52676c549cb5b983ac684d96d3fa717.zip
put the tab in
-rw-r--r--usr.bin/what/what.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/what/what.c b/usr.bin/what/what.c
index 03d47176078..41238ad5570 100644
--- a/usr.bin/what/what.c
+++ b/usr.bin/what/what.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: what.c,v 1.3 1996/06/26 06:40:11 deraadt Exp $ */
+/* $OpenBSD: what.c,v 1.4 1996/06/26 07:08:36 deraadt Exp $ */
/* $NetBSD: what.c,v 1.4 1994/12/20 16:01:03 jtc Exp $ */
/*
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)what.c 8.1 (Berkeley) 6/6/93";
#endif
-static char rcsid[] = "$OpenBSD: what.c,v 1.3 1996/06/26 06:40:11 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: what.c,v 1.4 1996/06/26 07:08:36 deraadt Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -95,7 +95,7 @@ loop: if (c == '$') {
for (i = 0; match[i]; i++)
if ((c = getchar()) != match[i])
goto loop;
- printf("$%s", match);
+ printf("\t$%s", match);
while (isprint(c = getchar()))
putchar(c);
putchar('\n');