summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * r19860: Streamline _winreg_QueryValue a bit. We've been pushing around memoryVolker Lendecke2006-11-231-105/+86
| | | | | | | | | | | | | | | | | | | | | | | | considerably here. This temporarily removes a cache for the tdb based registry, I'll re-add that in srv_winreg_nt.c in the next step. This fixes creating/renaming values from the windows regedit.exe, as "New Value #1" was not entering the cache after being created. Volker
| * r19858: Fix a memleak, add a constVolker Lendecke2006-11-231-1/+2
| |
| * r19857: Make the perfcounter compile after tdb changesVolker Lendecke2006-11-232-14/+7
| |
| * r19853: Update a linkVolker Lendecke2006-11-231-0/+4
| |
| * r19852: Fix the build for the VFS examples. Fixes bugzilla #3931.James Peach2006-11-232-4/+17
| |
| * r19851: Disable gcc PIE options on Darwin.James Peach2006-11-231-0/+5
| |
| * r19849: Fix compilation after idl changes.Jelmer Vernooij2006-11-221-4/+4
| |
| * r19848: Sync with Samba4 - no top-level unique pointers.Jelmer Vernooij2006-11-225-47/+31
| |
| * r19841: Wrap regdb_store_keys and regdb_store_values in tdb transactionsVolker Lendecke2006-11-222-18/+60
| |
| * r19840: Fix an uninitialized variableVolker Lendecke2006-11-221-0/+7
| |
| * r19839: Fix the build, we are not there yet :-)Volker Lendecke2006-11-221-1/+0
| |
| * r19838: We have to delete the value record as well, otherwise the old values ↵Volker Lendecke2006-11-221-0/+4
| | | | | | | | | | | | | | | | pop up again if the key is re-created. Volker
| * r19837: Some reformatting (Jerry, I hope you do not mindVolker Lendecke2006-11-221-4/+9
| |
| * r19835: Some net sam policy improvements.Volker Lendecke2006-11-221-50/+77
| | | | | | | | | | | | Thanks to Karolin Seeger <ks@sernet.de> Volker
| * r19828: Add a helper function to pull *and* unparse local registry valuesVolker Lendecke2006-11-211-0/+56
| |
| * r19827: Move registry_push/pull_value to lib/util_reg.cVolker Lendecke2006-11-212-116/+116
| |
| * r19826: Fix typoJim McDonough2006-11-211-1/+1
| |
| * r19825: To create a key, smbd also needs read privs assignedVolker Lendecke2006-11-211-1/+2
| |
| * r19824: Fix the max value calculation in QueryInfoKeyVolker Lendecke2006-11-211-9/+10
| |
| * r19823: "log" is an internal define in older versions of gcc.Jeremy Allison2006-11-213-4/+4
| | | | | | | | | | Rename to log_ctx. Jeremy.
| * r19822: Implement net rpc registry createkey, deletekey and deletevalueVolker Lendecke2006-11-211-0/+168
| |
| * r19821: Make net_rpc_registry use net_run_function2.Volker Lendecke2006-11-211-24/+14
| | | | | | | | | | | | | | | | Fix an erroneous NT_STATUS_NO_MEMORY found by Chetan S <cshring@gmail.com>. Thanks :-) Volker
| * r19820: Limit the stat cache to 1MB by default (Bug 4244). Thanks to Bjoern ↵Volker Lendecke2006-11-211-1/+1
| | | | | | | | | | | | | | | | Jacke <bj@sernet.de> Volker
| * r19819: Windows returns an empty string instead of NULL hereVolker Lendecke2006-11-211-1/+1
| |
| * r19818: Remove reg_split_hive, make use of registry_openkeyVolker Lendecke2006-11-212-99/+19
| |
| * r19817: Implement net rpc registry setvalue (only dword and sz so far)Volker Lendecke2006-11-211-0/+191
| |
* | r23195: Add void *private_data to brl_forallVolker Lendecke2007-05-295-30/+39
| |
* | r23190: svn merge ../SAMBA_3_0 -r22019:22026Gerald Carter2007-05-296-60/+50
| | | | | | | | | | This is abartlet's talloc changes to the samu struct stored in the server info state.
* | r23186: Checkin on behalf of Tridge:Volker Lendecke2007-05-291-57/+57
| | | | | | | | Change notify.tdb to use dbwrap
* | r23185: Try to fix the IRIX build, also add the forgotten file_id.c in .26Volker Lendecke2007-05-292-2/+105
| |
* | r23184: Checkin for Tridge: Add a speed test to tdbtoolVolker Lendecke2007-05-291-2/+52
| |
* | r23183: Check in a change made by Tridge:Volker Lendecke2007-05-2922-313/+263
| | | | | | | | | | | | | | | | | | | | | | | | | | This replaces the internal explicit dev/ino file id representation by a "struct file_id". This is necessary as cluster file systems and NFS don't necessarily assign the same device number to the shared file system. With this structure in place we can now easily add different schemes to map a file to a unique 64-bit device node. Jeremy, you might note that I did not change the external interface of smb_share_modes.c. Volker
* | r23173: Convert sessionid.tdb to ctdb. The 3.0.26 patch is a bit larger becauseVolker Lendecke2007-05-283-74/+132
| | | | | | | | it brings across the tdb-based list_sessions
* | r23172: Change shutdown_other_smbds to use connections_traverse instead ofVolker Lendecke2007-05-282-11/+13
| | | | | | | | session_traverse.
* | r23171: Convert connections.tdb to dbwrapVolker Lendecke2007-05-288-162/+163
| |
* | r23170: Add map_nt_error_from_tdb()Volker Lendecke2007-05-282-2/+45
| |
* | r23169: Merge 535 of Tridge's bzr tree:Volker Lendecke2007-05-271-2/+5
| | | | | | | | | | store the right data after cleaning lock records. This fixes RAW-BENCH-LOCK after a recovery on a cluster
* | r23168: Move the lp_max_connections() into service.c.Volker Lendecke2007-05-275-27/+26
| |
* | r23167: Remove an unused parameterVolker Lendecke2007-05-275-5/+6
| |
* | r23166: Bring samba.org's iniparser copy in sync with the upstream version 2.17.Lars Müller2007-05-2719-588/+652
| |
* | r23165: Convert brlock.tdb to dbwrapVolker Lendecke2007-05-272-38/+52
| |
* | r23164: Minor cosmetic checkinVolker Lendecke2007-05-271-2/+2
| |
* | r23163: Convert locking.tdb to dbwrapVolker Lendecke2007-05-272-91/+110
| |
* | r23162: Make use of messaging_send_bufVolker Lendecke2007-05-271-4/+2
| |
* | r23161: Add TDB_VOLATILE as open_flag to activate the per-hashchain dead recordVolker Lendecke2007-05-272-0/+5
| | | | | | | | optimization.
* | r23156: Install the smb_share_modes.h header file.Lars Müller2007-05-261-0/+1
| |
* | r23155: Rename INSTALLPERMS to INSTALLPERMS_BIN to differenciate clearer fromLars Müller2007-05-261-32/+32
| | | | | | | | INSTALLPERMS_DATA.
* | r23154: Add INSTALLPERMS_DATA set to 0644 to install the header files with thisLars Müller2007-05-261-3/+4
| | | | | | | | permission set instead of 0755.
* | r23151: Re-arrange the logic so it looks identical to theJeremy Allison2007-05-261-8/+14
| | | | | | | | | | | | | | "file existed" case above. This has no functional change but is easier to see that it's doing the same thing. Jeremy.
* | r23150: Fix Samba3 in the build farm again. In the case where theJeremy Allison2007-05-261-0/+17
| | | | | | | | | | | | | | | | | | | | file was being created and we go into the race condition check, we were testing for compatible open modes, but were not breaking oplocks in the same way as if the file existed. This meant that we weren't going into the code path that sets fsp->oplock = FAKE_LEVEL_II_OPLOCK if the client didn't ask for an oplock on file create. We need to do this as internally it's what Windows does. Jeremy.