diff options
author | Steve Langasek <vorlon@debian.org> | 2003-07-13 20:01:44 +0000 |
---|---|---|
committer | Steve Langasek <vorlon@debian.org> | 2003-07-13 20:01:44 +0000 |
commit | 8e75c66582868ef647aa80f3d36c0985e0b394b8 (patch) | |
tree | d28a1859cf0432f4a53555c16b30e75d54e899e4 /modules | |
parent | d9628ff6eb4c6807123496f3a3195c5e3ea32aba (diff) | |
download | pam-8e75c66582868ef647aa80f3d36c0985e0b394b8.tar.gz pam-8e75c66582868ef647aa80f3d36c0985e0b394b8.tar.bz2 pam-8e75c66582868ef647aa80f3d36c0985e0b394b8.zip |
Relevant BUGIDs: 770645
Purpose of commit: cleanup
Commit summary:
---------------
Fix the many compile-time warnings caused by features.h being included
before our _pam_aconf.h. This should make it much easier to find other
bugs.
Also, call config.status instead of configure, to allow rebuilding
generated files with the same options.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/pammodutil/modutil_getlogin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/pammodutil/modutil_getlogin.c b/modules/pammodutil/modutil_getlogin.c index b624def1..28616337 100644 --- a/modules/pammodutil/modutil_getlogin.c +++ b/modules/pammodutil/modutil_getlogin.c @@ -6,12 +6,12 @@ * there. */ +#include "pammodutil.h" + #include <stdlib.h> #include <unistd.h> #include <utmp.h> -#include "pammodutil.h" - #define _PAMMODUTIL_GETLOGIN "_pammodutil_getlogin" const char *_pammodutil_getlogin(pam_handle_t *pamh) |