diff options
author | Jeremy Allison <jra@samba.org> | 1998-05-26 19:37:31 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-05-26 19:37:31 +0000 |
commit | 1d16f750515bcf49e0dc87394479dc56e7192538 (patch) | |
tree | 43dc3e4498e941ffa44bec5801dc9b14643c91ff /source3/passdb | |
parent | 863c787b020eaf2dc648f51087f5ce3d2c82ab2c (diff) | |
download | samba-1d16f750515bcf49e0dc87394479dc56e7192538.tar.gz samba-1d16f750515bcf49e0dc87394479dc56e7192538.tar.bz2 samba-1d16f750515bcf49e0dc87394479dc56e7192538.zip |
smb.h: More NT SMB stuff (just defines).
smbpass.c: Do *NOT* make this function static. It breaks the compile on gcc
util.c: Getting closer to MS wildcard semantics. A trailing '*' matches
any trailing dot-separated components.
trans2.c: Removed hacks that change multiple '?' -> '*' as this
breaks things now.
trans2.h: Removed NT_FILE_ATTRIBUTE_NORMAL - now FILE_ATTRIBUTE_NORMAL is defined
in smb.h.
Jeremy.
(This used to be commit 42a65511068cd9006350c80bbed2f346f3f01cb0)
Diffstat (limited to 'source3/passdb')
-rw-r--r-- | source3/passdb/smbpass.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/passdb/smbpass.c b/source3/passdb/smbpass.c index a9efcf2a52..abb037b95d 100644 --- a/source3/passdb/smbpass.c +++ b/source3/passdb/smbpass.c @@ -952,5 +952,6 @@ struct passdb_ops *file_initialize_password_db(void) } #else - static void dummy_function(void) { } /* stop some compilers complaining */ + /* Do *NOT* make this function static. It breaks the compile on gcc. JRA */ + void dummy_function(void) { } /* stop some compilers complaining */ #endif /* USE_SMBPASS_DB */ |