git: 9front

Download patch

ref: 92e84e329b3763593cf5b770ef4a94a9c1347670
parent: fd800c4a63eb856ded00c107d328b41078a73c7b
author: aiju <devnull@localhost>
date: Wed Jul 11 08:23:48 EDT 2018

asaudit: make error more explicit

--- a/sys/src/cmd/auth/asaudit.c
+++ b/sys/src/cmd/auth/asaudit.c
@@ -83,7 +83,7 @@
 	buf = smprint("/mnt/keys/%s/aeskey", nvr.authid);
 	fd = open(buf, OREAD);
 	if(fd < 0){
-		print("can't get key from keyfs: %r\n");
+		print("BAD: can't get key from keyfs: %r\n");
 		return;
 	}
 	werrstr("short read");
--