[pkg-vlock-commit] r52 - in trunk: . debian

Alexander Wirt formorer at costa.debian.org
Wed Jul 19 19:54:46 CEST 2006


Author: formorer
Date: 2006-07-19 17:54:42 +0000 (Wed, 19 Jul 2006)
New Revision: 52

Modified:
   trunk/debian/changelog
   trunk/input.c
Log:
Add a patch for #364081 (return code of correct_password)


Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2006-02-20 11:45:46 UTC (rev 51)
+++ trunk/debian/changelog	2006-07-19 17:54:42 UTC (rev 52)
@@ -1,3 +1,10 @@
+vlock (1.3-10) unstable; urgency=low
+
+  * Add a patch from Guido Guenther that adds better checking for the return
+    code of correct_password() (Closes: #364081) 
+
+ -- Alexander Wirt <formorer at debian.org>  Wed, 19 Jul 2006 19:53:24 +0200
+
 vlock (1.3-9) unstable; urgency=low
 
   * New Maintainer/Uploaders (closes: #321755).

Modified: trunk/input.c
===================================================================
--- trunk/input.c	2006-02-20 11:45:46 UTC (rev 51)
+++ trunk/input.c	2006-07-19 17:54:42 UTC (rev 52)
@@ -189,7 +189,7 @@
     }
 
     /* correct_password() sets the terminal status as necessary */
-    if (correct_password()) {
+    if (correct_password() > 0) {
       restore_signals();
       restore_terminal();
       return;



More information about the pkg-vlock-commit mailing list