diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2019-08-02 19:06:23 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2019-08-02 19:06:23 +0200 |
commit | 675870f9b13501d8eea0c4e4339a951567021672 (patch) | |
tree | e51b542213afc9b13ebe5c9fa3309d3e48617780 /sys/src/libauth | |
parent | 05f9a66fd4ea4a3744847d354bda9a1f4aefcdbc (diff) |
libauth: do not set errstr in auth_rpc() for ARdone result (thanks majiru)
Diffstat (limited to 'sys/src/libauth')
-rw-r--r-- | sys/src/libauth/auth_rpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/libauth/auth_rpc.c b/sys/src/libauth/auth_rpc.c index 4333a7381..5017f3f45 100644 --- a/sys/src/libauth/auth_rpc.c +++ b/sys/src/libauth/auth_rpc.c @@ -90,7 +90,7 @@ auth_rpc(AuthRpc *rpc, char *verb, void *a, int na) werrstr("unknown rpc type %d (bug in auth_rpc.c)", type); break; case ARok: - break; + case ARdone: case ARrpcfailure: break; case ARerror: |