summaryrefslogtreecommitdiffstats
path: root/source/libsmb/clisecdesc.c
Commit message (Collapse)AuthorAgeFilesLines
* Make use of [un]marshall_sec_descVolker Lendecke2007-12-291-28/+17
|
* RIP BOOL. Convert BOOL -> bool. I found a few interestingJeremy Allison2007-10-181-3/+3
| | | | | | | bugs in various places whilst doing this (places that assumed BOOL == int). I also need to fix the Samba4 pidl generation (next checkin). Jeremy.
* r23784: use the GPLv3 boilerplate as recommended by the FSF and the license textAndrew Tridgell2007-10-101-2/+1
|
* r23779: Change from v2 or later to v3 or later.Jeremy Allison2007-10-101-1/+1
| | | | Jeremy.
* r18745: Use the Samba4 data structures for security descriptors and security ↵Jelmer Vernooij2007-10-101-3/+3
| | | | | | | | | descriptor buffers. Make security access masks simply a uint32 rather than a structure with a uint32 in it.
* r4917: Merge some of Derrell.Lipman@UnwiredUniverse.com obvious fixes.Jeremy Allison2007-10-101-2/+7
| | | | | Added text explaining units in pdbedit time fields. Jeremy.
* r2834: Netapps can return NT_STATUS_ACCESS_DENIED when trying to return theTim Potter2007-10-101-0/+3
| | | | | | security descriptor for a file. Return an error in this case instead of panicing trying to unpack a zero length buffer. Found by Brett Funderburg.
* According to Ethereal we have a 32-Bit quantity here. And with SSVAL valgrindVolker Lendecke2003-10-231-1/+1
| | | | | | | reports an unitialized read which is obviously correct. And I hate valgrind errors ;-) Volker
* get rid of some sompiler warnings on IRIXHerb Lewis2003-08-151-2/+2
|
* Fix from Tom.Lackemann@falconstor.com to correctly set the flags basedJeremy Allison2003-05-101-1/+9
| | | | | on the security entries sent. Jeremy.
* Ensure that only parse_prs.c access internal members of the prs_struct.Jeremy Allison2003-02-141-3/+3
| | | | | Needed to move to disk based i/o later. Jeremy.
* Forward port the change to talloc_init() to make all talloc contextsJeremy Allison2002-12-201-1/+1
| | | | | named. Ensure we can query them. Jeremy.
* Removed version number from file header.Tim Potter2002-01-301-2/+1
| | | | Changed "SMB/Netbios" to "SMB/CIFS" in file header.
* move to SAFE_FREE()Simo Sorce2001-09-171-4/+4
|
* Renamed formal parameter fd to fnum because we're talking about SMB fileTim Potter2001-07-051-10/+7
| | | | handles, not unix ones.
* Fixup smbcacls. Don't return memory already freed, don't free memory allocatedJeremy Allison2001-05-011-12/+1
| | | | | with talloc. Jeremy.
* - fixed some compiler warningsAndrew Tridgell2001-04-281-1/+1
| | | | - fixed slprintf and vsprintf macros
* merging from 2.2 to headAndrew Tridgell2001-04-221-10/+7
|
* Serious (and I *mean* serious) attempt to fix little/bigendian RPC issues.Jeremy Allison2001-03-091-2/+2
| | | | | | | | | We were reading the endainness in the RPC header and then never propagating it to the internal parse_structs used to parse the data. Also removed the "align" argument to prs_init as it was *always* set to 4, and if needed can be set differently on a case by case basis. Now ready for AS/U testing when Herb gets it set up :-). Jeremy.
* make sure we don't free non-allocated dataAndrew Tridgell2001-02-221-7/+10
|
* Fixed memory leaks in lsa_XX calls. Fixed memory leaks in smbcacls. MergedJeremy Allison2000-12-151-15/+24
| | | | | | in fixes from appliance-head and 2.2. Fixed multiple connection.tdb open problem. Jeremy.
* removed SACL support (as it doesn't work with w2k if you ask forAndrew Tridgell2000-12-041-2/+2
| | | | SACLs)
* changed an error messageAndrew Tridgell2000-12-031-1/+1
|
* getting/setting acls now works. The SIDs are still numeric, the nextAndrew Tridgell2000-12-031-1/+56
| | | | step is to support usernames etc
* - added client support for nttrans callsAndrew Tridgell2000-12-031-0/+82
- added a cli_ function for querying a security descriptor on a remote file