diff options
author | bde <bde@FreeBSD.org> | 1998-08-02 16:06:35 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-08-02 16:06:35 +0000 |
commit | b7b0859c3f4470d1bd2770f26c5af6f037833993 (patch) | |
tree | f19b09078f6555282c806798e61ed7b7b564fa2c /sbin/mountd | |
parent | dbc09be291ed507f26f3b2f3fbad6b02ef6bf476 (diff) | |
download | FreeBSD-src-b7b0859c3f4470d1bd2770f26c5af6f037833993.zip FreeBSD-src-b7b0859c3f4470d1bd2770f26c5af6f037833993.tar.gz |
Fixed printf format errors.
Diffstat (limited to 'sbin/mountd')
-rw-r--r-- | sbin/mountd/mountd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/mountd/mountd.c b/sbin/mountd/mountd.c index abe5476..fe556db 100644 --- a/sbin/mountd/mountd.c +++ b/sbin/mountd/mountd.c @@ -45,7 +45,7 @@ static const char copyright[] = static char sccsid[] = "@(#)mountd.c 8.15 (Berkeley) 5/1/95"; #endif static const char rcsid[] = - "$Id$"; + "$Id: mountd.c,v 1.32 1998/07/15 06:21:40 charnier Exp $"; #endif /*not lint*/ #include <sys/param.h> @@ -492,7 +492,7 @@ mntsrv(rqstp, transp) else if (log) syslog(LOG_NOTICE, "dump request succeeded from %s", - inet_ntoa(saddrin), dirpath); + inet_ntoa(saddrin)); return; case RPCMNT_UMOUNT: if (sport >= IPPORT_RESERVED && resvport_only) { |