summaryrefslogtreecommitdiff
path: root/usr.bin/skey
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2010-04-11 20:20:30 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2010-04-11 20:20:30 +0000
commit70ae683d49567763729ad87e2df3abc4c2f1d30a (patch)
tree4fb17a4119ee97378cae78ff5bc8d3d4c6ce8d5c /usr.bin/skey
parent4c2b9fc603bca3a48f69a87889209addbaa8a42d (diff)
Fix typo in line ending; from Antti Harri
Diffstat (limited to 'usr.bin/skey')
-rw-r--r--usr.bin/skey/skey.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/skey/skey.c b/usr.bin/skey/skey.c
index 0f7a04493f4..3b134a0c131 100644
--- a/usr.bin/skey/skey.c
+++ b/usr.bin/skey/skey.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: skey.c,v 1.25 2010/02/28 13:07:26 millert Exp $ */
+/* $OpenBSD: skey.c,v 1.26 2010/04/11 20:20:29 millert Exp $ */
/*
* OpenBSD S/Key (skey.c)
*
@@ -139,7 +139,7 @@ main(int argc, char *argv[])
if (hexmode)
(void)printf("%d: %s\n", i, put8(buf, key));
else
- (void)printf("%d: %-29s\b", i, btoe(buf, key));
+ (void)printf("%d: %-29s\n", i, btoe(buf, key));
f(key);
}
}