Date: Mon, 25 Jun 2007 16:39:45 GMT From: Roman Divacky <rdivacky@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 122286 for review Message-ID: <200706251639.l5PGdjcM066817@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=122286 Change 122286 by rdivacky@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] == '/'); } }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200706251639.l5PGdjcM066817>