diff options
author | schweikh <schweikh@FreeBSD.org> | 2002-12-30 21:18:15 +0000 |
---|---|---|
committer | schweikh <schweikh@FreeBSD.org> | 2002-12-30 21:18:15 +0000 |
commit | 86f7487fb6a0b8dd9e3a699ad48d6e99504a67ff (patch) | |
tree | bd0234a8048c844b06483795cfb1fe4d34b68a4f /sys/fs/smbfs | |
parent | 338583ff7c1145c5e2deba34aed769eb7998286c (diff) | |
download | FreeBSD-src-86f7487fb6a0b8dd9e3a699ad48d6e99504a67ff.zip FreeBSD-src-86f7487fb6a0b8dd9e3a699ad48d6e99504a67ff.tar.gz |
Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/
Add FreeBSD Id tag where missing.
Diffstat (limited to 'sys/fs/smbfs')
-rw-r--r-- | sys/fs/smbfs/smbfs_smb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/smbfs/smbfs_smb.c b/sys/fs/smbfs/smbfs_smb.c index cd85cbd..034fc77 100644 --- a/sys/fs/smbfs/smbfs_smb.c +++ b/sys/fs/smbfs/smbfs_smb.c @@ -364,7 +364,7 @@ smb_smb_flush(struct smbnode *np, struct smb_cred *scred) int error; if (np->n_opencount <= 0 || !SMBTOV(np) || SMBTOV(np)->v_type != VREG) - return 0; /* not an regular open file */ + return 0; /* not a regular open file */ error = smb_rq_init(rqp, SSTOCP(ssp), SMB_COM_FLUSH, scred); if (error) return (error); |