PERFORCE change 122286 for review

Roman Divacky rdivacky at FreeBSD.org
Mon Jun 25 16:39:46 UTC 2007


http://perforce.freebsd.org/chv.cgi?CH=122286

Change 122286 by rdivacky at rdivacky_witten on 2007/06/25 16:39:04

	Fail = 0, not 1.

Affected files ...

.. //depot/projects/soc2007/rdivacky/linux_at/sys/kern/vfs_syscalls.c#29 edit

Differences ...

==== //depot/projects/soc2007/rdivacky/linux_at/sys/kern/vfs_syscalls.c#29 (text+ko) ====

@@ -1010,7 +1010,7 @@
 	} else {
 		error = copyinstr(path, buf, 1, NULL);
 		if (error)
-			return 1;	/* we want to fail */
+			return 0;	/* we want to fail */
 		return (buf[0] == '/');	
 	}
 }


More information about the p4-projects mailing list