summaryrefslogtreecommitdiff
path: root/package/pam/patches/patch-modules_pam_time_pam_time_c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-10-13 21:55:56 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2011-10-13 21:55:56 +0200
commit2dbe60a5c8d806758609cc499ddbd68437f1fbcc (patch)
tree6fa884ac691a9a830011455ea9b5822b9a1009f1 /package/pam/patches/patch-modules_pam_time_pam_time_c
parent99611d3de4fafd225966d197ca064b6f1fb05afa (diff)
make it for uClibc usable
Diffstat (limited to 'package/pam/patches/patch-modules_pam_time_pam_time_c')
-rw-r--r--package/pam/patches/patch-modules_pam_time_pam_time_c13
1 files changed, 13 insertions, 0 deletions
diff --git a/package/pam/patches/patch-modules_pam_time_pam_time_c b/package/pam/patches/patch-modules_pam_time_pam_time_c
new file mode 100644
index 000000000..e57094beb
--- /dev/null
+++ b/package/pam/patches/patch-modules_pam_time_pam_time_c
@@ -0,0 +1,13 @@
+--- Linux-PAM-1.1.4.orig/modules/pam_time/pam_time.c 2011-06-21 11:04:56.000000000 +0200
++++ Linux-PAM-1.1.4/modules/pam_time/pam_time.c 2011-10-12 14:43:20.673559001 +0200
+@@ -555,7 +555,9 @@ check_account(pam_handle_t *pamh, const
+ }
+ /* If buffer starts with @, we are using netgroups */
+ if (buffer[0] == '@')
+- good &= innetgr (&buffer[1], NULL, user, NULL);
++ //good &= innetgr (&buffer[1], NULL, user, NULL);
++ pam_syslog(pamh, LOG_ERR,
++ "%s: no netgroup support in C library", PAM_TIME_CONF);
+ else
+ good &= logic_field(pamh, user, buffer, count, is_same);
+ D(("with user: %s", good ? "passes":"fails" ));