summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* packaging(RHEL): add ldbtools binaries and man pages to common packageMichael Adam2008-09-091-0/+12
| | | | Michael
* packaging(RHEL): add cifs.upcall binary and manpage to client packageMichael Adam2008-09-091-0/+2
| | | | Michael
* packaging(RHEL): fix installation of pam modules.Michael Adam2008-09-091-5/+2
| | | | Michael
* packaging(RHEL): remove leftovers of smbmount from SPEC file.Michael Adam2008-09-091-4/+0
| | | | Michael
* packaging(RHEL): add new libs (talloc, tdb, ...) to the common packageMichael Adam2008-09-091-0/+11
| | | | Michael
* packaging(RHEL): remove workaround code for libsmclient/sharemodes installationMichael Adam2008-09-091-15/+0
| | | | | | | With 3.3.0, this is not needed any more (libdir/modulesdir separation and corrected library creation). Michael
* packaging(RHEL): fix libdir installation by using _libarch/_libarchdirMichael Adam2008-09-091-30/+39
| | | | Michael
* packaging(RHEL): remove libmsrpc stuff which is no more...Michael Adam2008-09-091-10/+0
| | | | Michael
* packaging(RHEL): remove duplicate installation of pam_smbpass.soMichael Adam2008-09-091-3/+0
| | | | Michael
* packaging(RHEL): remove smbmount related stuff from spec fileMichael Adam2008-09-091-10/+0
| | | | Michael
* packaging(RHEL): don't make proto for samba 3.3Michael Adam2008-09-091-2/+0
| | | | Michael
* packaging(RHEL): use --libdir and --with-modulesdir instead of --with-libdirMichael Adam2008-09-091-1/+2
| | | | Michael
* packaging(RHEL): fix version of GPL (2 --> 3)Michael Adam2008-09-091-1/+1
| | | | Michael
* Fix a memleak in cli_qfilename (only used in smbtorture)Volker Lendecke2008-09-091-0/+5
|
* Fix calculation of useable_space for trans2 and nttrans repliesVolker Lendecke2008-09-082-18/+19
| | | | | | When alignment was in place, we pretended to send more data/params according to the param_offset/param_length and data_offset/data_length parameters than would actually fit into the SMB according to the NBSS length field.
* When setting an NFSv4 ACL, map generic bitsVolker Lendecke2008-09-081-0/+4
|
* Thanks metze for pointing out the missing extern :-)Volker Lendecke2008-09-081-1/+1
|
* smbd: some write time fixesStefan Metzmacher2008-09-082-8/+8
| | | | | | | | | | | | | | - only the first non truncating write causes the write time update with 2 seconds delay. It's not enough to check for an existing update event as it will be NULL after the event was triggered. - SMBwrite truncates always update the write time unless the sticky write time is set. - SMBwrite truncates don't trigger a write time update on close. metze
* Remove some duplicate codeVolker Lendecke2008-09-081-6/+1
|
* packaging(RHEL-CTDB): add fix for versions containing "-" signs.Michael Adam2008-09-081-0/+1
| | | | | Michael (cherry picked from commit 423105e29aaef449dbc40d124900a3f654b7266b)
* packaging(RHEL-CTDB): extend and slightly reformat comment header blockMichael Adam2008-09-081-4/+5
| | | | | Michael (cherry picked from commit 1bfc8cc575cd84f24ceb6f6c5d13c9171c0895a5)
* packaging(RHEL-CTDB): unify and extend (C) headerMichael Adam2008-09-081-1/+2
| | | | | Michael (cherry picked from commit e051c1cbf7a993e3885c4a515e516da3574a1f57)
* packaging(RHEL-CTDB): autodetect the samba version number from version.hMichael Adam2008-09-082-2/+28
| | | | | | | | | Generate version.h first. Create samba.spec from (new) samba.spec.tmpl, replacing PVERSION by the version string. (as is done with update-pkginfo called from the create-tarball release script) Michael
* packaging(RHEL-CTDB): introduce variable TOPDIRMichael Adam2008-09-081-1/+2
| | | | | Michael (cherry picked from commit 74e335ebf210c4812b0f790d05b697a183803af7)
* packaging(RHEL-CTDB): rename SPECDIR to RPMSPECDIRMichael Adam2008-09-081-4/+4
| | | | | Michael (cherry picked from commit ac2b09b2274a12c34c446c4536793a33515958cc)
* packaging(RHEL-CTDB): rename SRCDIR to RPMSRCDIRMichael Adam2008-09-081-5/+5
| | | | | Michael (cherry picked from commit d8a8ea87439315ecf407a866a12e2993343af39c)
* netapi: expand NetUser testsuite a little.Günther Deschner2008-09-081-2/+146
| | | | Guenther
* netapi: add NetShare testsuite.Günther Deschner2008-09-084-1/+240
| | | | Guenther
* net: use NETSETUP flags consistently.Günther Deschner2008-09-081-1/+1
| | | | Guenther
* netapi: re-arrange a little NetLocalGroupSetMembers example code.Günther Deschner2008-09-081-4/+9
| | | | Guenther
* netapi: fix NetShareGetInfo example output.Günther Deschner2008-09-081-1/+1
| | | | Guenther
* Fix debug message to show correct function name.Jeremy Allison2008-09-051-1/+1
| | | | Jeremy.
* Write times code update.Jeremy Allison2008-09-057-48/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ok, here's the fix for the write times breakage with the new tests in S4 smbtorture. The key is keeping in the share mode struct the "old_file_time" as the real write time, set by all the write and allocation calls, and the "changed_write_time" as the "sticky" write time - set by the SET_FILE_TIME calls. We can set them independently (although I kept the optimization of not setting the "old_file_time" is a "changed_write_time" was already set, as we'll never see it. This allows us to update the write time immediately on the SMBwrite truncate case, SET_END_OF_FILE and SET_ALLOCATION_SIZE calls, whilst still have the 2 second delay on the "normal" SMBwrite, SMBwriteX calls. I think in a subsequent patch I'd like to change the name of these from "old_file_time" to "write_time" and "changed_write_time" to "sticky_write_time" to make this clearer. I think I also fixed a bug in Metze's original code in that once a write timestamp had been set from a "normal" SMBwriteX call the fsp->update_write_time_triggered variable was set and then never reset - thus meaning the write timestamp would never get updated again on subsequent SMBwriteX's. The new code checks the update_write_time_event event instead, and doesn't update is there's an event already scheduled. Metze especially, please check this over for your understanding. Jeremy.
* Remove unecessary msync.Jeremy Allison2008-09-051-4/+0
| | | | Jeremy.
* Fix "warning: pointer of type 'void *' used in arithmetic".Jeremy Allison2008-09-051-1/+1
| | | | Jeremy.
* Revert "winbindd: the ad trusted_domains call should return talloced strings."Günther Deschner2008-09-051-5/+2
| | | | This reverts commit b57cbf62e8180c8fdb8f541c43358d36d8dbbdfa.
* Fix a memleakQiao Yang2008-09-051-1/+2
| | | | | | request.extra_data is not freed if there is no extra_data in response or when there is some error happens in processing. This patch will free the buffer right after processing a request before sending back a response.
* re-run make idl.Günther Deschner2008-09-053-0/+47
| | | | Guenther
* netapi: add SHARE_INFO_1005_FLAGS.Günther Deschner2008-09-051-1/+16
| | | | Guenther
* netapi: implement NetShareSetInfo_r.Günther Deschner2008-09-051-1/+59
| | | | Guenther
* netapi: add support for level 1004 inGünther Deschner2008-09-051-0/+13
| | | | | | map_SHARE_INFO_buffer_to_srvsvc_share_info. Guenther
* netapi: add NetShareSetInfo example code.Günther Deschner2008-09-052-1/+112
| | | | Guenther
* netapi: add NetShareSetInfo to public header.Günther Deschner2008-09-051-0/+22
| | | | Guenther
* netapi: add skeleton for NetShareSetInfo.Günther Deschner2008-09-053-0/+75
| | | | Guenther
* re-run make idl.Günther Deschner2008-09-053-1/+54
| | | | Guenther
* netapi: add NetShareSetInfo to IDL.Günther Deschner2008-09-051-0/+12
| | | | Guenther
* netapi: implement NetShareEnum_r.Günther Deschner2008-09-051-1/+90
| | | | Guenther
* netapi: implement NetShareGetInfo_r.Günther Deschner2008-09-051-1/+154
| | | | Guenther
* netapi: add NetShareGetInfo example code.Günther Deschner2008-09-052-1/+159
| | | | Guenther
* netapi: add NetShareGetInfo to public header.Günther Deschner2008-09-051-0/+20
| | | | Guenther