[Pkg-shadow-commits] r2062 - in upstream/trunk: . lib

nekral-guest at alioth.debian.org nekral-guest at alioth.debian.org
Mon May 26 08:51:50 UTC 2008


Author: nekral-guest
Date: 2008-05-26 08:51:45 +0000 (Mon, 26 May 2008)
New Revision: 2062

Modified:
   upstream/trunk/ChangeLog
   upstream/trunk/lib/shadowio.c
Log:
The changed, isopen, locked, and readonly fields of the db are booleans.


Modified: upstream/trunk/ChangeLog
===================================================================
--- upstream/trunk/ChangeLog	2008-05-26 08:49:44 UTC (rev 2061)
+++ upstream/trunk/ChangeLog	2008-05-26 08:51:45 UTC (rev 2062)
@@ -8,6 +8,8 @@
 
 	* lib/shadowio.h, lib/shadowio.c: spw_file_present returns a bool.
 	* lib/shadowio.h: Add protection against multiple inclusions.
+	* lib/shadowio.c: The changed, isopen, locked, and readonly fields
+	of the db are booleans.
 
 2008-05-26  Nicolas François  <nicolas.francois at centraliens.net>
 

Modified: upstream/trunk/lib/shadowio.c
===================================================================
--- upstream/trunk/lib/shadowio.c	2008-05-26 08:49:44 UTC (rev 2061)
+++ upstream/trunk/lib/shadowio.c	2008-05-26 08:51:45 UTC (rev 2062)
@@ -99,10 +99,10 @@
 	NULL,			/* head */
 	NULL,			/* tail */
 	NULL,			/* cursor */
-	0,			/* changed */
-	0,			/* isopen */
-	0,			/* locked */
-	0			/* readonly */
+	false,			/* changed */
+	false,			/* isopen */
+	false,			/* locked */
+	false			/* readonly */
 };
 
 int spw_name (const char *filename)




More information about the Pkg-shadow-commits mailing list