]> git.ipfire.org Git - thirdparty/HylaFAX.git/commitdiff
Bug 682: fix possible hfaxd login vulnerability due to PAM
authorLee Howard <faxguy@howardsilvan.com>
Fri, 16 Dec 2005 01:28:17 +0000 (01:28 +0000)
committerLee Howard <faxguy@howardsilvan.com>
Fri, 16 Dec 2005 01:28:17 +0000 (01:28 +0000)
         library absence during build

CHANGES
hfaxd/Login.c++

diff --git a/CHANGES b/CHANGES
index becdeee256cfc721f75ca3d6d24ff8434f1c4a1f..1c5f9e52e924d6f5c3c774635276e2c56d1be18b 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,8 @@
 
 Changelog since HylaFAX 4.2.3
 
+* fix possible hfaxd login vulnerability due to PAM
+  library absence during build (15 Dec 2005)
 * fix a Solaris compile error due to PAM_CONV_AGAIN (15 Dec 2005)
 * fix Solaris 9 compile error due to PAM (15 Dec 2005)
 * all Mainpine boards no longer identified as the DUO+
index cceb785897c58f8035656d2fdc93da8b7ffa4f1d..39c1136f47663949467cd3e12478dc5ec56deeb7 100644 (file)
@@ -183,8 +183,8 @@ HylaFAXServer::pamCheck(const char* user, const char* pass)
                retval = true;
 
        pamEnd(pamret);
-       return retval;
 #endif
+       return retval;
 }
 
 void HylaFAXServer::pamEnd(int pamret)