Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Apr 2007 15:58:39 GMT
From:      Roman Divacky <rdivacky@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 117371 for review
Message-ID:  <200704041558.l34FwdRZ080980@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=117371

Change 117371 by rdivacky@rdivacky_witten on 2007/04/04 15:57:49

	Whitespace fixes.

Affected files ...

.. //depot/projects/linuxolator/src/sys/kern/vfs_lookup.c#9 edit

Differences ...

==== //depot/projects/linuxolator/src/sys/kern/vfs_lookup.c#9 (text+ko) ====

@@ -204,16 +204,16 @@
 		dp = fdp->fd_cdir;
 		VREF(dp);
 	} else {
-	   	struct file *fp;
+		struct file *fp;
 
 		/* XXX: */
 		if (fdp == NULL) {
-		   	FILEDESC_UNLOCK(fdp);
+			FILEDESC_UNLOCK(fdp);
 			return (EBADF);
 		}
 		fp = fget_locked(fdp, dirfd);
 		if (fp == NULL || fp->f_ops == &badfileops) {
-		   	FILEDESC_UNLOCK(fdp);
+			FILEDESC_UNLOCK(fdp);
 			return (EBADF);
 		}
 		fhold(fp);
@@ -227,7 +227,7 @@
 
 		if (dp->v_type != VDIR) {
 			fdrop(fp, td);
-		   	FILEDESC_UNLOCK(fdp);
+			FILEDESC_UNLOCK(fdp);
 			return (ENOTDIR);
 		}
 		VREF(dp);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200704041558.l34FwdRZ080980>