diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-12-12 10:28:29 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-12-12 10:28:29 +0000 |
commit | b6842b5dab05c5836e7d77c8ec1a2c302fcc1ba6 (patch) | |
tree | deb7a03c67044a9c83d401e099de5b7f91cd811a /sbin/mount_nfs/mount_nfs.c | |
parent | 9a17d8fdb4d9da581e29375e8f6ddb6633fc3209 (diff) |
cannot use err() here
Diffstat (limited to 'sbin/mount_nfs/mount_nfs.c')
-rw-r--r-- | sbin/mount_nfs/mount_nfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/mount_nfs/mount_nfs.c b/sbin/mount_nfs/mount_nfs.c index a8560cbeef2..17cea7d2173 100644 --- a/sbin/mount_nfs/mount_nfs.c +++ b/sbin/mount_nfs/mount_nfs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount_nfs.c,v 1.6 1996/05/28 12:37:57 deraadt Exp $ */ +/* $OpenBSD: mount_nfs.c,v 1.7 1996/12/12 10:28:28 deraadt Exp $ */ /* $NetBSD: mount_nfs.c,v 1.12.4.1 1996/05/25 22:48:05 fvdl Exp $ */ /* @@ -680,7 +680,7 @@ tryagain: ~NFSMNT_NFSV3; goto tryagain; } else { - errx(1, "%s", + fprintf(stdderr, "%s", clnt_sperror(clp, "MNT RPC")); } |