diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-08-21 20:11:11 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2015-08-21 20:11:11 +0200 |
commit | f6dbd3d99325352b80e2ff6b0d13e8a1557369cb (patch) | |
tree | 0ceb5ab353044711cd4e8f56c803f3784059a976 | |
parent | c96efcfef35fc8be3e510d134cf65e9a8204f7d0 (diff) |
keyfs: fix typo (thanks jpm)
-rw-r--r-- | sys/src/cmd/auth/keyfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/auth/keyfs.c b/sys/src/cmd/auth/keyfs.c index 9ec02e0fb..d23cfb6ba 100644 --- a/sys/src/cmd/auth/keyfs.c +++ b/sys/src/cmd/auth/keyfs.c @@ -932,7 +932,7 @@ readusers(void) } free(buf); - print("%d keys read in %s foarmat\n", nu, keydbaes ? "AES" : "DES"); + print("%d keys read in %s format\n", nu, keydbaes ? "AES" : "DES"); return 1; } |