diff options
author | 1996-06-26 07:08:36 +0000 | |
---|---|---|
committer | 1996-06-26 07:08:36 +0000 | |
commit | 74b69f87a52676c549cb5b983ac684d96d3fa717 (patch) | |
tree | d1beb51cd8379144ec55895e915f46eac0ebd8e1 | |
parent | handle $OpenBSD$ rcsid... using uname too! (diff) | |
download | wireguard-openbsd-74b69f87a52676c549cb5b983ac684d96d3fa717.tar.xz wireguard-openbsd-74b69f87a52676c549cb5b983ac684d96d3fa717.zip |
put the tab in
-rw-r--r-- | usr.bin/what/what.c | 6 |
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'); |