git: 9front

Download patch

ref: c696151b3bd9b21dfb1053077b3157a170d4c66d
parent: c4ddaa3de43c58dc7eb51c106a522536da45548e
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Fri Aug 21 16:11:11 EDT 2015

keyfs: fix typo (thanks jpm)

--- a/sys/src/cmd/auth/keyfs.c
+++ b/sys/src/cmd/auth/keyfs.c
@@ -932,7 +932,7 @@
 	}
 	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;
 }
 
--