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 | 42a65511068cd9006350c80bbed2f346f3f01cb0 (patch) | |
tree | cc6df5d2f4951e7b5b668a5a4754e46938f16333 /source/passdb/smbpass.c | |
parent | dab9728a4376cc52d6e53b09b5f42d08712330d6 (diff) | |
download | samba-42a65511068cd9006350c80bbed2f346f3f01cb0.tar.gz samba-42a65511068cd9006350c80bbed2f346f3f01cb0.tar.xz samba-42a65511068cd9006350c80bbed2f346f3f01cb0.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.
Diffstat (limited to 'source/passdb/smbpass.c')
-rw-r--r-- | source/passdb/smbpass.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/passdb/smbpass.c b/source/passdb/smbpass.c index a9efcf2a52d..abb037b95df 100644 --- a/source/passdb/smbpass.c +++ b/source/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 */ |