diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1995-05-30 06:12:45 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1995-05-30 06:12:45 +0000 |
commit | f3a2b348daf9fa6063c38d2d69563f732a2f80e7 (patch) | |
tree | 4d38911cf1e5e1ef56a662eddcbe2f706b2e6973 /usr.sbin | |
parent | f05428e4cd63dde97bac14b84dd146a5c00455e3 (diff) | |
download | FreeBSD-src-f3a2b348daf9fa6063c38d2d69563f732a2f80e7.zip FreeBSD-src-f3a2b348daf9fa6063c38d2d69563f732a2f80e7.tar.gz |
Remove trailing whitespace.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/mount_portalfs/conf.c | 4 | ||||
-rw-r--r-- | usr.sbin/mount_portalfs/mount_portalfs.c | 2 | ||||
-rw-r--r-- | usr.sbin/mountd/mountd.c | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/mount_portalfs/conf.c b/usr.sbin/mount_portalfs/conf.c index 5b335a8..3eb4af3 100644 --- a/usr.sbin/mount_portalfs/conf.c +++ b/usr.sbin/mount_portalfs/conf.c @@ -36,7 +36,7 @@ * * @(#)conf.c 8.2 (Berkeley) 3/27/94 * - * $Id: conf.c,v 1.2 1992/05/27 07:09:27 jsp Exp jsp $ + * $Id: conf.c,v 1.2 1995/02/21 04:05:20 wollman Exp $ */ #include <stdio.h> @@ -131,7 +131,7 @@ qelem *q0; } ins_que(&p0->p_q, q0->q_back); return (1); - + } static path *palloc(cline, lno) diff --git a/usr.sbin/mount_portalfs/mount_portalfs.c b/usr.sbin/mount_portalfs/mount_portalfs.c index 23098d2..51184df 100644 --- a/usr.sbin/mount_portalfs/mount_portalfs.c +++ b/usr.sbin/mount_portalfs/mount_portalfs.c @@ -220,7 +220,7 @@ main(argc, argv) conf_read(&q, conf); continue; } - + /* * Accept a new connection * Will get EINTR if a signal has arrived, so just diff --git a/usr.sbin/mountd/mountd.c b/usr.sbin/mountd/mountd.c index 4ca3d3c..0446087 100644 --- a/usr.sbin/mountd/mountd.c +++ b/usr.sbin/mountd/mountd.c @@ -43,7 +43,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "From: @(#)mountd.c 8.8 (Berkeley) 2/20/94";*/ static const char rcsid[] = - "$Id: mountd.c,v 1.5 1995/03/26 23:36:38 wpaul Exp $"; + "$Id: mountd.c,v 1.6 1995/05/21 19:31:09 phk Exp $"; #endif /*not lint*/ #include <sys/param.h> @@ -580,14 +580,14 @@ put_exlist(dp, xdrsp, adp, putdefp) if (!xdr_bool(xdrsp, &true)) return (1); strp = grp->gr_ptr.gt_hostent->h_name; - if (!xdr_string(xdrsp, &strp, + if (!xdr_string(xdrsp, &strp, RPCMNT_NAMELEN)) return (1); } else if (grp->gr_type == GT_NET) { if (!xdr_bool(xdrsp, &true)) return (1); strp = grp->gr_ptr.gt_net.nt_name; - if (!xdr_string(xdrsp, &strp, + if (!xdr_string(xdrsp, &strp, RPCMNT_NAMELEN)) return (1); } |