summaryrefslogtreecommitdiff
path: root/usr.bin/skey
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-03-06 20:19:26 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-03-06 20:19:26 +0000
commit9b69d88557d780dd96b90dad1208e71f14ae4ed1 (patch)
treea1327489de139155684b2a5e6efae2bf573a320e /usr.bin/skey
parentab2a49abcd3f84660d7157d8ada37cc67c3db0b2 (diff)
add missing reference to infocmp
Diffstat (limited to 'usr.bin/skey')
-rw-r--r--usr.bin/skey/skey.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/skey/skey.c b/usr.bin/skey/skey.c
index 61170484cf4..99da755e2ea 100644
--- a/usr.bin/skey/skey.c
+++ b/usr.bin/skey/skey.c
@@ -1,4 +1,4 @@
-/* * $OpenBSD: skey.c,v 1.10 1997/07/17 05:48:40 millert Exp $*/
+/* * $OpenBSD: skey.c,v 1.11 1999/03/06 20:19:20 millert Exp $*/
/*
* S/KEY v1.1b (skey.c)
*
@@ -37,7 +37,7 @@ main(argc, argv)
{
int n, i, cnt = 1, pass = 0, hexmode = 0;
char passwd[SKEY_MAX_PW_LEN+1], key[SKEY_BINKEY_SIZE];
- char buf[33], *seed, *slash;
+ char bufs[33], bufh[33], *seed, *slash;
/* If we were called as otp-METHOD, set algorithm based on that */
if ((slash = strrchr(argv[0], '/')))
@@ -129,16 +129,16 @@ main(argc, argv)
if (cnt == 1) {
while (n-- != 0)
f(key);
- (void)puts(hexmode ? put8(buf, key) : btoe(buf, key));
+ (void)puts(hexmode ? put8(bufh, key) : btoe(bufs, key));
} else {
for (i = 0; i <= n - cnt; i++)
f(key);
for (; i <= n; i++) {
if (hexmode)
(void)printf("%d: %-29s %s\n", i,
- btoe(buf, key), put8(buf, key));
+ btoe(bufs, key), put8(bufh, key));
else
- (void)printf("%d: %-29s\n", i, btoe(buf, key));
+ (void)printf("%d: %-29s\n", i, btoe(bufs, key));
f(key);
}
}