diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-06-04 05:13:59 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-06-04 05:13:59 +0000 |
commit | 05fc3e578c895f632b351969d09cd00feb7599c7 (patch) | |
tree | 8dca3af624421a6f3ea664e14e5666da37aefb46 /source3/printing/nt_printing.c | |
parent | f903ec893ad7aff832193bcd7035be3ee9c65c22 (diff) | |
download | samba-05fc3e578c895f632b351969d09cd00feb7599c7.tar.gz samba-05fc3e578c895f632b351969d09cd00feb7599c7.tar.bz2 samba-05fc3e578c895f632b351969d09cd00feb7599c7.zip |
use LDSHFLAGS not -shared in several places
(This used to be commit 8ec9c87b5d1a7dae17d5b1a30f58effaf5e69e4b)
Diffstat (limited to 'source3/printing/nt_printing.c')
-rw-r--r-- | source3/printing/nt_printing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index a0031ae35a..11d0cfbdd5 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -180,7 +180,7 @@ BOOL nt_printing_init(void) char *vstring = "INFO/version"; if (tdb && local_pid == sys_getpid()) return True; - tdb = tdb_open(lock_path("ntdrivers.tdb"), 0, 0, O_RDWR|O_CREAT, 0600); + tdb = tdb_open_log(lock_path("ntdrivers.tdb"), 0, 0, O_RDWR|O_CREAT, 0600); if (!tdb) { DEBUG(0,("Failed to open nt drivers database %s (%s)\n", lock_path("ntdrivers.tdb"), strerror(errno) )); |