| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
| |
Jeremy.
|
|
|
|
| |
Jeremy.
|
|
|
|
| |
Jeremy.
|
|
|
|
| |
Jeremy.
|
|
|
|
|
|
|
|
| |
libsmb/nmblib.c: dos2unix fix.
printing/nt_printing.c: Exit code fixes.
printing/printing.c: debug fixes.
tdb/tdbtool.c: Updates from JohnR.
Jeremy.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
nmbd/nmbd.c:
smbd/server.c: Inherited signal fix from John Reilly.
printing/nt_printing.c:
printing/printing.c:
rpc_server/srv_spoolss_nt.c: Fix for PCL drivers not being able to save
printer properties.
printing/printfsp.c:
smbd/close.c: Fix to allow cleanup of spool files on connection drop.
tdb/tdb.c: malloc fix from Tim Potter.
tdb/tdbtool.c: Free list viewer from John.
smbd/lanman.c: Fix to stop a buffer overrun in Win9x from corrupting
it's own parameter list. Sigh.... buffer overruns are-us (MS).
Jeremy.
|
|
|
|
|
| |
one hashchain and the next hashchain was empty.
Jeremy.
|
|
|
|
|
| |
tdb/tdb.c tdb/tdbtool.c: Added print free list command.
Jeremy.
|
|
|
|
| |
Jeremy.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
two places i found where it was appropriate to _use_ that third argument,
in locking.c and brlock.c! there was a static traverse_function and
i removed the static variable, typecast it to a void*, passed it to
tdb_traverse and re-cast it back to the traverse_function inside the
tdb_traverse function. this makes the use of tdb_traverse() reentrant,
which is never going to happen, i know, i just don't like to see
statics lying about when there's no need for them.
as i had to do in samba-tng, all uses of tdb_traverse modified to take
the new void* state argument.
2) disabled rpcclient: referring people to use SAMBA_TNG rpcclient.
i don't know how the other samba team members would react if i deleted
rpcclient from cvs main. damn, that code's so old, it's unreal.
20 rpcclient commands, instead of about 70 in SAMBA_TNG.
|
| |
|
|
|
|
|
|
|
|
|
| |
- added TDB_CLEAR_IF_FIRST flag to clear the database if this is the
first attached process. Useful for non-persistent databases like our
locking area (this will also make upgrades to new database layouts easier)
- use lock_path() in a couple of places
- leave connections database open while smbd running
- cleaned up some tdb code a little, using macros for constants
|
| |
|
|
suite and a very simple tool for manuipulating the databases.
the main code is in tdb/tdb.c and includes both mmap and file based
IO. All databases auto-expand and allow multiple simultaneous writers.
the next step is using this new capability in lots of places in Samba
where we have existing ad-hoc databases
|