[Pinfo-devel] r186 - pinfo/trunk/src
Nathanael Nerode
neroden-guest at costa.debian.org
Wed Sep 7 01:58:43 UTC 2005
Author: neroden-guest
Date: 2005-09-07 01:58:42 +0000 (Wed, 07 Sep 2005)
New Revision: 186
Modified:
pinfo/trunk/src/filehandling_functions.c
Log:
Fix reversed return value in matchfile.
Modified: pinfo/trunk/src/filehandling_functions.c
===================================================================
--- pinfo/trunk/src/filehandling_functions.c 2005-09-07 01:57:55 UTC (rev 185)
+++ pinfo/trunk/src/filehandling_functions.c 2005-09-07 01:58:42 UTC (rev 186)
@@ -88,7 +88,7 @@
dir = opendir(Buf);
if (dir == NULL)
{
- return 1;
+ return 0;
}
/* iterate over all files in the directory */
More information about the Pinfo-devel
mailing list