summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/modules/getdate.c1
-rw-r--r--source3/modules/getdate.y1
-rw-r--r--source3/pam_smbpass/pam_smb_auth.c2
-rw-r--r--source3/smbadduser.in6
4 files changed, 6 insertions, 4 deletions
diff --git a/source3/modules/getdate.c b/source3/modules/getdate.c
index 491c51294e..51211f316d 100644
--- a/source3/modules/getdate.c
+++ b/source3/modules/getdate.c
@@ -138,6 +138,7 @@
#endif
#include <ctype.h>
+#include <string.h>
#if HAVE_STDLIB_H
# include <stdlib.h> /* for `free'; used by Bison 1.27 */
diff --git a/source3/modules/getdate.y b/source3/modules/getdate.y
index aab37f4d23..60b1aa577e 100644
--- a/source3/modules/getdate.y
+++ b/source3/modules/getdate.y
@@ -43,6 +43,7 @@
#endif
#include <ctype.h>
+#include <string.h>
#if HAVE_STDLIB_H
# include <stdlib.h> /* for `free'; used by Bison 1.27 */
diff --git a/source3/pam_smbpass/pam_smb_auth.c b/source3/pam_smbpass/pam_smb_auth.c
index cbdb6fa811..f604d42449 100644
--- a/source3/pam_smbpass/pam_smb_auth.c
+++ b/source3/pam_smbpass/pam_smb_auth.c
@@ -67,7 +67,7 @@ int pam_sm_authenticate(pam_handle_t *pamh, int flags,
SAM_ACCOUNT *sampass = NULL;
extern BOOL in_client;
const char *name;
- void (*oldsig_handler)(int);
+ void (*oldsig_handler)(int) = NULL;
BOOL found;
/* Points to memory managed by the PAM library. Do not free. */
diff --git a/source3/smbadduser.in b/source3/smbadduser.in
index 05da7de08e..4b9671319a 100644
--- a/source3/smbadduser.in
+++ b/source3/smbadduser.in
@@ -10,15 +10,15 @@ PRIVATEDIR=@privatedir@
CONFIGDIR=@configdir@
unalias *
-set path = ($path /usr/local/samba/bin)
+set path = ($path /usr/bin)
set smbpasswd = $PRIVATEDIR/smbpasswd
-set user_map = $CONFIGDIR/users.map
+set user_map = $CONFIGDIR/smbusers
#
# Set to site specific passwd command
#
-set passwd = "cat /etc/passwd"
+set passwd = "getent passwd"
#set passwd = "niscat passwd.org_dir"
#set passwd = "ypcat passwd"