aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew G. Morgan <morgan@kernel.org>2001-02-18 03:03:31 +0000
committerAndrew G. Morgan <morgan@kernel.org>2001-02-18 03:03:31 +0000
commitfe18f187e6553f814d45f714b35e19011b1014b4 (patch)
treeece2fb807a9b69c1e6643832612b89c44c78c4ce
parent585361e3edda12751c3620012fc70d68984b7d8d (diff)
downloadpam-fe18f187e6553f814d45f714b35e19011b1014b4.tar.gz
pam-fe18f187e6553f814d45f714b35e19011b1014b4.tar.bz2
pam-fe18f187e6553f814d45f714b35e19011b1014b4.zip
Relevant BUGIDs: 132880
Purpose of commit: bugfix Commit summary: --------------- wasn't linking conv.o into the module.
-rw-r--r--CHANGELOG2
-rw-r--r--modules/pam_userdb/Makefile2
2 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 4e1dd678..0df13a01 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -50,6 +50,8 @@ libpam. Prior versions were buggy - see bugfix for Bug 129775.
** WARNING **
+* fix pam_userdb to make and link both .o files it needs - converse()
+ wasn't being linked! (Bug 132880 - agmorgan)
* added some sys-admin documentation for the pam_tally module (Bug
126210 - agmorgan).
* added a link to module examples from the module writers doc (Bug
diff --git a/modules/pam_userdb/Makefile b/modules/pam_userdb/Makefile
index aeee0c03..40687f8d 100644
--- a/modules/pam_userdb/Makefile
+++ b/modules/pam_userdb/Makefile
@@ -28,6 +28,8 @@ include ../dont_makefile
else
+MODULE_SIMPLE_EXTRAFILES = conv
+
include ../Simple.Rules
endif