diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2012-05-29 20:05:00 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2012-05-29 20:05:00 +0000 |
commit | 93f5223866c8e4548d19e70a02acc5e93bd35dd0 (patch) | |
tree | 7cdf302b362cc25fabb947a592573bd4b2b26960 /sbin/mount_nfs | |
parent | eaf31838f16b510a811cbac2bd9b9bcb0c19faf2 (diff) |
Fix tyop in error message; this was copied from/to umount(8)'s umount.c which was just fixed.
Diffstat (limited to 'sbin/mount_nfs')
-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 2561607c357..33c0c692373 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.49 2009/10/27 23:59:33 deraadt Exp $ */ +/* $OpenBSD: mount_nfs.c,v 1.50 2012/05/29 20:04:59 jasper Exp $ */ /* $NetBSD: mount_nfs.c,v 1.12.4.1 1996/05/25 22:48:05 fvdl Exp $ */ /* @@ -449,7 +449,7 @@ tryagain: pertry, &so); if (clp == NULL) { if ((opflags & ISBGRND) == 0) - clnt_pcreateerror("Cannot MNT PRC"); + clnt_pcreateerror("Cannot MNT RPC"); } else { clp->cl_auth = authunix_create_default(); try.tv_sec = 10; |