diff options
author | Jared Yanovich <jaredy@cvs.openbsd.org> | 2005-04-08 20:09:39 +0000 |
---|---|---|
committer | Jared Yanovich <jaredy@cvs.openbsd.org> | 2005-04-08 20:09:39 +0000 |
commit | 4aa08f3abdbaffdf78a844c44ade693cf7daea1f (patch) | |
tree | a1ea02a53fc7d6f64ba752eab0f4a0f1acc90dad /sbin/mount_portal | |
parent | 6ae197dff1cae3924cfab9868d086c0e749e49de (diff) |
Sync with recent realpath(3) changes: on failure, don't use the second
argument "resolved", since it is undefined.
ok and help millert, otto
Diffstat (limited to 'sbin/mount_portal')
-rw-r--r-- | sbin/mount_portal/mount_portal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/mount_portal/mount_portal.c b/sbin/mount_portal/mount_portal.c index ea4ba3f6fe1..d1150aa3236 100644 --- a/sbin/mount_portal/mount_portal.c +++ b/sbin/mount_portal/mount_portal.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount_portal.c,v 1.26 2003/07/29 18:38:36 deraadt Exp $ */ +/* $OpenBSD: mount_portal.c,v 1.27 2005/04/08 20:09:37 jaredy Exp $ */ /* $NetBSD: mount_portal.c,v 1.8 1996/04/13 01:31:54 jtc Exp $ */ /* @@ -43,7 +43,7 @@ char copyright[] = #if 0 static char sccsid[] = "@(#)mount_portal.c 8.6 (Berkeley) 4/26/95"; #else -static char rcsid[] = "$OpenBSD: mount_portal.c,v 1.26 2003/07/29 18:38:36 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: mount_portal.c,v 1.27 2005/04/08 20:09:37 jaredy Exp $"; #endif #endif /* not lint */ @@ -153,7 +153,7 @@ main(int argc, char *argv[]) */ conf = argv[optind]; if (realpath(argv[optind+1], mountpt) == NULL) - err(1, "realpath %s", mountpt); + err(1, "realpath %s", argv[optind+1]); /* * Construct the listening socket |