Commit Diff


commit - ec96a0ad3b80dd46a4d68359807c0c09560100cb
commit + d1739e3f03a014fa9baded61a49eeb49293c751f
blob - ecac97be9e3002b61bee2aae7397548cae17bab8
blob + 5da49707d44638a90ffdc9e9c199c220da3e38f6
--- crypto.c
+++ crypto.c
@@ -342,8 +342,9 @@ rsae_send_imsg(int flen, const unsigned char *from, un
 			toptr = imsg.data + sizeof(res);
 
 			if (res.id != reqid)
-				fatalx("invalid response id"
-				    " got %llu, want %llu", res.id, reqid);
+				fatalx("invalid id; got %llu, want %llu",
+				    (unsigned long long)res.id,
+				    (unsigned long long)reqid);
 			if (res.ret > 0)
 				memcpy(to, toptr, res.len);