From d8eba606078c57e5480a82b5c1a1c9df4cf83a01 Mon Sep 17 00:00:00 2001 From: Thorsten Kukuk Date: Tue, 25 Nov 2003 09:06:54 +0000 Subject: Relevant BUGIDs: 848337 Purpose of commit: bugfix Commit summary: --------------- pam_shells uses strlen/strcmp, but does not include the corresponding string.h header file. This could lead to problems on architectures, where gcc needs a correct prototype to generate correct calling code. pam_stress.c complains about a redefined __USE_BSD symbol. This is a internal glibc define and should not be used in source code. --- modules/pam_shells/pam_shells.c | 1 + 1 file changed, 1 insertion(+) (limited to 'modules/pam_shells/pam_shells.c') diff --git a/modules/pam_shells/pam_shells.c b/modules/pam_shells/pam_shells.c index b70ba030..37d740dc 100644 --- a/modules/pam_shells/pam_shells.c +++ b/modules/pam_shells/pam_shells.c @@ -12,6 +12,7 @@ #include #include +#include #include #include #include -- cgit v1.2.3