diff options
Diffstat (limited to 'sbin/mount_null/mount_null.c')
-rw-r--r-- | sbin/mount_null/mount_null.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/mount_null/mount_null.c b/sbin/mount_null/mount_null.c index 31767a90e74..83668b9060b 100644 --- a/sbin/mount_null/mount_null.c +++ b/sbin/mount_null/mount_null.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mount_null.c,v 1.10 2003/06/11 06:22:14 deraadt Exp $ */ +/* $OpenBSD: mount_null.c,v 1.11 2003/07/03 22:41:40 tedu Exp $ */ /* $NetBSD: mount_null.c,v 1.3 1996/04/13 01:31:49 jtc Exp $ */ /* @@ -43,7 +43,7 @@ char copyright[] = #if 0 static char sccsid[] = "@(#)mount_null.c 8.5 (Berkeley) 3/27/94"; #else -static char rcsid[] = "$OpenBSD: mount_null.c,v 1.10 2003/06/11 06:22:14 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: mount_null.c,v 1.11 2003/07/03 22:41:40 tedu Exp $"; #endif #endif /* not lint */ @@ -92,7 +92,7 @@ main(int argc, char *argv[]) usage(); if (realpath(argv[0], target) == 0) - err(1, "%s", target); + err(1, "realpath %s", target); if (subdir(target, argv[1]) || subdir(argv[1], target)) errx(1, "%s (%s) and %s are not distinct paths", |