summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/src/cmd/auth/asaudit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/auth/asaudit.c b/sys/src/cmd/auth/asaudit.c
index 3e52854e2..2ee12f649 100644
--- a/sys/src/cmd/auth/asaudit.c
+++ b/sys/src/cmd/auth/asaudit.c
@@ -167,7 +167,7 @@ trykey(int keyfs)
rpc = auth_allocrpc(fd);
if(rpc == nil){ print("auth_allocrpc: %r\n"); return -1; }
- s = smprint("proto=dp9ik dom=%s user=%s role=server", nvr.authdom, nvr.authid);
+ s = smprint("proto=dp9ik dom=%q user=%q role=server", nvr.authdom, nvr.authid);
if(auth_rpc(rpc, "start", s, strlen(s)) != ARok){ print("auth_rpc start: %r\n"); goto err; }
free(s);