summaryrefslogtreecommitdiffstats
path: root/source/utils/profiles.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo in commentJelmer Vernooij2003-03-231-2/+2
|
* Convert to popt.Jelmer Vernooij2003-03-231-54/+56
|
* Fix compiler warning.Tim Potter2003-02-251-1/+1
|
* Add staticAndrew Bartlett2003-02-221-7/+7
|
* Grrr. Kill all BSD-isms... Spotted by Paul Green <paulg@sw.stratus.com>.Jeremy Allison2003-02-031-1/+1
| | | | Jeremy.
* Fix an error where the SK Offset was truncated to 16 bits. Variables neededRichard Sharpe2003-01-161-1/+1
| | | | to be unsigned int (DWORD) not unsigned int (WORD).
* BIG patch...Andrew Bartlett2003-01-021-1/+1
| | | | | | | | | | | | | | | | This patch makes Samba compile cleanly with -Wwrite-strings. - That is, all string literals are marked as 'const'. These strings are always read only, this just marks them as such for passing to other functions. What is most supprising is that I didn't need to change more than a few lines of code (all in 'net', which got a small cleanup of net.h and extern variables). The rest is just adding a lot of 'const'. As far as I can tell, I have not added any new warnings - apart from making all of tdbutil.c's function const (so they warn for adding that const string to struct). Andrew Bartlett
* Spelling fix.Tim Potter2002-11-201-1/+1
|
* Merge of scalable printing code fix... Needs testing.Jeremy Allison2002-11-071-6/+4
| | | | | | | Also tidied up some of Richard's code (I don't think he uses the compiler flags -g -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual like I do :-) :-). Jeremy.
* A small fix by Andy Thomas. Now that incrementing the Auth index hasRichard Sharpe2002-11-051-1/+2
| | | | | been pushed into a macro, things do not work so well. Move the increment out of the array index.
* See if char * makes the Irix C compiler happier than void *?Richard Sharpe2002-11-051-1/+1
|
* Make all of the required (I think) changes to make this code work forRichard Sharpe2002-11-051-25/+61
| | | | big endian and little endian systems.
* Start handling Big Endian machines as well as little endian.Richard Sharpe2002-11-051-2/+2
|
* Make sure that %u is used for SID elements ...Richard Sharpe2002-11-021-1/+1
|
* Add the changes to change the SIDs ...Richard Sharpe2002-11-011-19/+45
| | | | | | | | You must make two passes over NTUSER.DAT, one for the OWNER SID and one for GROUP SID. I have not tested this yet ... that is, I have not tried to use this on a Win2K etc server.
* Add more. Parse SIDs on the command line ... soon will actually mod theRichard Sharpe2002-11-011-11/+88
| | | | SecDescs in the NTUSER.DAT ...
* Fix small typo ...Richard Sharpe2002-11-011-1/+1
|
* Add more code to the profiles program and add Makefile.in support.Richard Sharpe2002-11-011-12/+353
|
* Add a small utility that can print out the SEC DESCs in NTUSER.DAT.Richard Sharpe2002-10-311-0/+250
This is an early, messy version of the code, but it illustrates what can be done. It currently only prints the Owner SID, Group SID, and Perms and SID from each ACE. Once more work is done, it could actually walk the SEC DESCs and ACEs and change the SIDS ...