Your message dated Fri, 25 Jul 2008 04:17:09 +0000 with message-id <[EMAIL PROTECTED]> and subject line Bug#473268: fixed in falselogin 0.3-4 has caused the Debian Bug report #473268, regarding falselogin: Segfaults when getpwent() return NULL to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [EMAIL PROTECTED] immediately.) -- 473268: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473268 Debian Bug Tracking System Contact [EMAIL PROTECTED] with problems
--- Begin Message ---Package: falselogin Version: 0.2-4 Severity: important Tags: patch On a machine using LDAP authentication, falselogin segfaults for some users. I managed to track down the reason. This patch solve it, by making sure to not reference the NULL pointer when getpwent() return NULL. --- falselogin-0.3.orig/falselogin.c +++ falselogin-0.3/falselogin.c @@ -58,7 +58,7 @@ // (it might be a better way) while (!ok) { pwd = getpwent (); - if (pwd->pw_uid == getuid ()) + if (pwd && pwd->pw_uid == getuid ()) ok = 1; }
--- End Message ---
--- Begin Message ---Source: falselogin Source-Version: 0.3-4 We believe that the bug you reported is fixed in the latest version of falselogin, which is due to be installed in the Debian FTP archive: falselogin_0.3-4.diff.gz to pool/main/f/falselogin/falselogin_0.3-4.diff.gz falselogin_0.3-4.dsc to pool/main/f/falselogin/falselogin_0.3-4.dsc falselogin_0.3-4_i386.deb to pool/main/f/falselogin/falselogin_0.3-4_i386.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Kevin Zambrano <[EMAIL PROTECTED]> (supplier of updated falselogin package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.8 Date: Thu, 24 Jul 2008 18:16:23 -0430 Source: falselogin Binary: falselogin Architecture: source i386 Version: 0.3-4 Distribution: unstable Urgency: low Maintainer: Kevin Zambrano <[EMAIL PROTECTED]> Changed-By: Kevin Zambrano <[EMAIL PROTECTED]> Description: falselogin - false login shell Closes: 473268 Changes: falselogin (0.3-4) unstable; urgency=low . * New maintainer. * Adding NULL pointer validation when gets an user account entry from system. Patch by Petter Reinholdtsen (Closes: #473268) Checksums-Sha1: deca92f98772354fae33ae55ad27544384959bb8 971 falselogin_0.3-4.dsc 042cfd5968f970ed393b778989921dd2e54ebdfa 5332 falselogin_0.3-4.diff.gz 88a6b1d9de0ed46a0172defa9149f6ef9c4b2f6e 8882 falselogin_0.3-4_i386.deb Checksums-Sha256: 658846d058b3418fb5eca7115001960fddc088fddd726961db08fdd57756dd04 971 falselogin_0.3-4.dsc 39391a9af7e5463ef45d75cef8c05f0d13b482a4a4365dc9c9e21ad34c906fbc 5332 falselogin_0.3-4.diff.gz 9dea606001bbe6a31d09a65afdfb1163d547befde84136dd69297da01d230dcf 8882 falselogin_0.3-4_i386.deb Files: 922fed7c1b25197eff1819a940025ba4 971 utils optional falselogin_0.3-4.dsc 76abfe82146bd2bb7a2ad939691f09d7 5332 utils optional falselogin_0.3-4.diff.gz 74a18e41cf76f0a8412a2220dde5f6c3 8882 utils optional falselogin_0.3-4_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAkiJUwMACgkQUWAsjQBcO4JbyACeKiCs/p3Ze4IeYybesCpUi9p+ xPQAn2rZwngGZJNVerYvJdKxEiFmI0Fk =czQw -----END PGP SIGNATURE-----
--- End Message ---

