1
0
mirror of https://github.com/openbsd/src.git synced 2024-12-22 16:42:56 -08:00

Fix typo in line ending; from Antti Harri

This commit is contained in:
millert 2010-04-11 20:20:29 +00:00
parent 66608949d7
commit 3bed9b5424

View File

@ -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);
}
}