summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Dillon <dillon@FreeBSD.org>1999-02-13 08:38:28 +0000
committerMatthew Dillon <dillon@FreeBSD.org>1999-02-13 08:38:28 +0000
commit89a01116cfe5aa92ec2cbc9c469e28e0dfb87f4d (patch)
treefbd06416f07c93fcb73721508f57d05f1dfc0446
parent5e9d4f13033aed5bec16b423fa0da1bcf5a85388 (diff)
Notes
-rw-r--r--sys/ufs/ufs/ufs_vnops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/ufs/ufs/ufs_vnops.c b/sys/ufs/ufs/ufs_vnops.c
index da207136cd4b..e54f2b2b0742 100644
--- a/sys/ufs/ufs/ufs_vnops.c
+++ b/sys/ufs/ufs/ufs_vnops.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)ufs_vnops.c 8.27 (Berkeley) 5/27/95
- * $Id: ufs_vnops.c,v 1.105 1999/01/21 08:29:09 dillon Exp $
+ * $Id: ufs_vnops.c,v 1.106 1999/01/28 00:57:56 dillon Exp $
*/
#include "opt_quota.h"
@@ -891,14 +891,14 @@ ufs_rename(ap)
(tvp && (fvp->v_mount != tvp->v_mount))) {
error = EXDEV;
abortit:
- VOP_ABORTOP(tdvp, tcnp); /* XXX, why not in NFS? */
+ VOP_ABORTOP(tdvp, tcnp);
if (tdvp == tvp)
vrele(tdvp);
else
vput(tdvp);
if (tvp)
vput(tvp);
- VOP_ABORTOP(fdvp, fcnp); /* XXX, why not in NFS? */
+ VOP_ABORTOP(fdvp, fcnp);
vrele(fdvp);
vrele(fvp);
return (error);