git: 9front

Download patch

ref: 5c85bf33d2a8a8bf1c542ddaffcc59a11c857aaa
parent: 7438a16e353a116afd02d1e47e203d5e0e030ed0
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Fri Aug 2 15:06:23 EDT 2019

libauth: do not set errstr in auth_rpc() for ARdone result (thanks majiru)

--- a/sys/src/libauth/auth_rpc.c
+++ b/sys/src/libauth/auth_rpc.c
@@ -90,7 +90,7 @@
 		werrstr("unknown rpc type %d (bug in auth_rpc.c)", type);
 		break;
 	case ARok:
-		break;
+	case ARdone:
 	case ARrpcfailure:
 		break;
 	case ARerror:
--