diff options
author | mmcc <mmcc@cvs.openbsd.org> | 2016-02-12 00:11:00 +0000 |
---|---|---|
committer | mmcc <mmcc@cvs.openbsd.org> | 2016-02-12 00:11:00 +0000 |
commit | ac3a685814075133fcca5a07935de7eb417fda28 (patch) | |
tree | 344e8bb6968e1ecb569fcf95a611f03acfbb39e4 /usr.sbin | |
parent | 8f6fb2ebd6556bd6e616bc34e23dcd2c3d8020ca (diff) |
hexidecimal -> hexadecimal
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/tokeninit/tokeninit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/tokeninit/tokeninit.c b/usr.sbin/tokeninit/tokeninit.c index 512c3c438f3..e9b34482802 100644 --- a/usr.sbin/tokeninit/tokeninit.c +++ b/usr.sbin/tokeninit/tokeninit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tokeninit.c,v 1.10 2015/12/22 21:01:07 mmcc Exp $ */ +/* $OpenBSD: tokeninit.c,v 1.11 2016/02/12 00:10:59 mmcc Exp $ */ /*- * Copyright (c) 1995 Migration Associates Corp. All Rights Reserved @@ -211,7 +211,7 @@ prompt_for_secret(int hexformat, char* username) static char prompt[1024]; if (hexformat) snprintf(prompt, sizeof prompt, - "Enter a 16 digit hexidecimal number " + "Enter a 16 digit hexadecimal number " "as a seed for %s\'s token:\n", username); else snprintf(prompt, sizeof prompt, |