summaryrefslogtreecommitdiffstats
path: root/lib/libc/rpc/auth_unix.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2015-09-02 06:47:19 +0000
committerderaadt <deraadt@openbsd.org>2015-09-02 06:47:19 +0000
commit484854185150d40a092d9e7d24e2c43710eb6a83 (patch)
tree34528c1eb57b4d468e1b951fe261ad8f31a8fef5 /lib/libc/rpc/auth_unix.c
parentFix the bios boot to pass the bootargs properly. (diff)
downloadwireguard-openbsd-484854185150d40a092d9e7d24e2c43710eb6a83.tar.xz
wireguard-openbsd-484854185150d40a092d9e7d24e2c43710eb6a83.zip
Delete 3 more stderr messages, right before returning a proper error.
Code from way in the past.
Diffstat (limited to 'lib/libc/rpc/auth_unix.c')
-rw-r--r--lib/libc/rpc/auth_unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/rpc/auth_unix.c b/lib/libc/rpc/auth_unix.c
index 6aaeceeb019..c0b2565c17a 100644
--- a/lib/libc/rpc/auth_unix.c
+++ b/lib/libc/rpc/auth_unix.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth_unix.c,v 1.23 2015/09/01 19:54:00 deraadt Exp $ */
+/* $OpenBSD: auth_unix.c,v 1.24 2015/09/02 06:47:19 deraadt Exp $ */
/*
* Copyright (c) 2010, Oracle America, Inc.
@@ -322,7 +322,7 @@ marshal_new_auth(AUTH *auth)
xdrmem_create(xdrs, au->au_marshed, MAX_AUTH_BYTES, XDR_ENCODE);
if ((! xdr_opaque_auth(xdrs, &(auth->ah_cred))) ||
(! xdr_opaque_auth(xdrs, &(auth->ah_verf)))) {
- perror("auth_none.c - Fatal marshalling problem");
+ /* XXX nothing we can do */
} else {
au->au_mpos = XDR_GETPOS(xdrs);
}