diff options
author | Jeremy Allison <jra@samba.org> | 1998-08-15 01:19:26 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-08-15 01:19:26 +0000 |
commit | e13aeea928dd89373cfaf3916c96f853c1227884 (patch) | |
tree | 73b9506b9736b1e6a3a4117d6c54223250ea7d66 /source3/passdb | |
parent | b9623ab59e813131b1ed3f51616a46e719d59c21 (diff) | |
download | samba-e13aeea928dd89373cfaf3916c96f853c1227884.tar.gz samba-e13aeea928dd89373cfaf3916c96f853c1227884.tar.bz2 samba-e13aeea928dd89373cfaf3916c96f853c1227884.zip |
configure: Changes for extra headers.
configure.in: Source for header changes.
client/clitar.c: Fixed isXXX macros & debugs for gcc pedantic compile.
include/config.h.in: Added MEMSET, BZERO, MEMORY, RPCSVC_YPCLNT, STRINGS headers.
include/includes.h: Headers for the above.
include/smb.h: Made SIGNAL_CAST POSIX by default void (*)(int).
lib/access.c: Fixed isXXX macros & debugs for gcc pedantic compile.
lib/charset.c: Fixed isXXX macros & debugs for gcc pedantic compile.
lib/debug.c: Fixed signal functs.
lib/kanji.c: Fixed isXXX macros & debugs for gcc pedantic compile.
lib/smbrun.c: Fixed isXXX macros & debugs for gcc pedantic compile.
lib/util.c: Fixed isXXX macros & debugs for gcc pedantic compile.
libsmb/namequery.c: Fixed isXXX macros & debugs for gcc pedantic compile.
locking/shmem.c: Fixed isXXX macros & debugs for gcc pedantic compile.
locking/shmem_sysv.c: Fixed error messages in sysV stuff.
nmbd/asyncdns.c: Fixed signal functs.
nmbd/nmbd.c: Fixed isXXX macros & debugs for gcc pedantic compile.
passdb/passdb.c: Fixed isXXX macros & debugs for gcc pedantic compile.
passdb/smbpassfile.c: Fixed isXXX macros & debugs for gcc pedantic compile.
smbd/chgpasswd.c: Fixed isXXX macros & debugs for gcc pedantic compile.
smbd/ipc.c: Fixed isXXX macros & debugs for gcc pedantic compile.
smbd/nttrans.c: Fixed fsp code path.
smbd/password.c: fixed HAVE_YP_GET_DEFAULT_DOMAIN problem.
smbd/printing.c: Fixed isXXX macros & debugs for gcc pedantic compile.
smbd/reply.c: Fixed isXXX macros & debugs for gcc pedantic compile.
smbd/server.c: Fixed isXXX macros & debugs for gcc pedantic compile.
smbd/trans2.c: Fixed core dump bug.
smbd/uid.c: Fixed isXXX macros & debugs for gcc pedantic compile.
Jeremy.
(This used to be commit 1b9cbcd02e575dc0a95fa589f720df30a4acc46b)
Diffstat (limited to 'source3/passdb')
-rw-r--r-- | source3/passdb/passdb.c | 10 | ||||
-rw-r--r-- | source3/passdb/smbpassfile.c | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/source3/passdb/passdb.c b/source3/passdb/passdb.c index 0ca71dda94..0d806fccf7 100644 --- a/source3/passdb/passdb.c +++ b/source3/passdb/passdb.c @@ -113,7 +113,7 @@ struct smb_passwd *iterate_getsmbpwuid(uid_t smb_userid) struct smb_passwd *pwd = NULL; void *fp = NULL; - DEBUG(10, ("iterate_getsmbpwuid: search by smb_userid: %x\n", smb_userid)); + DEBUG(10, ("iterate_getsmbpwuid: search by smb_userid: %x\n", (int)smb_userid)); /* Open the smb password database - not for update. */ fp = startsmbpwent(False); @@ -129,7 +129,7 @@ struct smb_passwd *iterate_getsmbpwuid(uid_t smb_userid) if (pwd != NULL) { - DEBUG(10, ("iterate_getsmbpwuid: found by smb_userid: %x\n", smb_userid)); + DEBUG(10, ("iterate_getsmbpwuid: found by smb_userid: %x\n", (int)smb_userid)); } endsmbpwent(fp); @@ -370,7 +370,7 @@ struct sam_passwd *iterate_getsam21pwuid(uid_t uid) struct sam_passwd *pwd = NULL; void *fp = NULL; - DEBUG(10, ("iterate_getsam21pwuid: search by uid: %x\n", uid)); + DEBUG(10, ("iterate_getsam21pwuid: search by uid: %x\n", (int)uid)); /* Open the smb password file - not for update. */ fp = startsmbpwent(False); @@ -386,7 +386,7 @@ struct sam_passwd *iterate_getsam21pwuid(uid_t uid) if (pwd != NULL) { - DEBUG(10, ("iterate_getsam21pwuid: found by smb_userid: %x\n", uid)); + DEBUG(10, ("iterate_getsam21pwuid: found by smb_userid: %x\n", (int)uid)); } endsmbpwent(fp); @@ -599,7 +599,7 @@ static time_t get_time_from_string(char *p) for (i = 0; i < 8; i++) { - if (p[i] == '\0' || !isxdigit(p[i])) + if (p[i] == '\0' || !isxdigit((int)p[i])) break; } if (i == 8) diff --git a/source3/passdb/smbpassfile.c b/source3/passdb/smbpassfile.c index efbbbd78bf..49cf194cc6 100644 --- a/source3/passdb/smbpassfile.c +++ b/source3/passdb/smbpassfile.c @@ -268,7 +268,7 @@ BOOL get_trust_account_password( unsigned char *ret_pwd, time_t *pass_last_set_t p = &linebuf[37]; for(i = 0; i < 8; i++) { - if(p[i] == '\0' || !isxdigit(p[i])) { + if(p[i] == '\0' || !isxdigit((int)p[i])) { DEBUG(0,("get_trust_account_password: Malformed trust password file (no timestamp).\n")); #ifdef DEBUG_PASSWORD DEBUG(100,("get_trust_account_password: line = |%s|\n", linebuf)); |