From 1b412a501e22602ac5edcd875e09bd3814b6e841 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 19 May 1998 20:08:37 +0000 Subject: passdb.c: Fixed typo in coment. smb.h: Removed comments no longer valid. smbpass.c: Stopped dummy function from being prototyped. util.c: Fix for multibyte char problems with strlower, strupper and string_replace. Jeremy. (This used to be commit cd244b45a5d35fceee2a4034b0c6aabdb58871aa) --- source3/passdb/smbpass.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'source3/passdb/smbpass.c') diff --git a/source3/passdb/smbpass.c b/source3/passdb/smbpass.c index 24b3ee4a54..633a527be1 100644 --- a/source3/passdb/smbpass.c +++ b/source3/passdb/smbpass.c @@ -896,6 +896,10 @@ static BOOL mod_smbfilepwd_entry(struct smb_passwd* pwd, BOOL override) return True; } +/* + * Stub functions - implemented in terms of others. + */ + static BOOL mod_smbfile21pwd_entry(struct sam_passwd* pwd, BOOL override) { return mod_smbfilepwd_entry(pdb_sam_to_smb(pwd), override); @@ -948,5 +952,5 @@ struct passdb_ops *file_initialize_password_db(void) } #else -static void dummy_function(void) { } /* stop some compilers complaining */ + void dummy_function(void) { } /* stop some compilers complaining */ #endif /* USE_SMBPASS_DB */ -- cgit