diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2002-05-26 23:00:28 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2002-05-26 23:00:28 +0000 |
commit | 7b89c0b53be5361615639c5b3a5bf2cbb40f46bc (patch) | |
tree | db633b2812b6c24f86ebe3753ab37d03727f2743 /modules/pam_rootok/pam_rootok.c | |
parent | af973ad47adf81e4edb9a92ab540c0613d156fbd (diff) | |
download | pam-7b89c0b53be5361615639c5b3a5bf2cbb40f46bc.tar.gz pam-7b89c0b53be5361615639c5b3a5bf2cbb40f46bc.tar.bz2 pam-7b89c0b53be5361615639c5b3a5bf2cbb40f46bc.zip |
Relevant BUGIDs: 557322
Purpose of commit: cleanup
Commit summary:
---------------
clean up a compilation warning about strcmp() not being defined.
Diffstat (limited to 'modules/pam_rootok/pam_rootok.c')
-rw-r--r-- | modules/pam_rootok/pam_rootok.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/pam_rootok/pam_rootok.c b/modules/pam_rootok/pam_rootok.c index 4d440b03..a7342104 100644 --- a/modules/pam_rootok/pam_rootok.c +++ b/modules/pam_rootok/pam_rootok.c @@ -12,6 +12,7 @@ #include <unistd.h> #include <syslog.h> #include <stdarg.h> +#include <string.h> /* * here, we make a definition for the externally accessible function |