summaryrefslogtreecommitdiffstats
path: root/source/utils
Commit message (Collapse)AuthorAgeFilesLines
...
* With assuptions about unixsam gone, we can forget about looking upAndrew Bartlett2003-02-221-4/+1
| | | | | | the user a second time now. Andrew Bartlett
* Fixed another compiler warning.Tim Potter2003-02-211-1/+1
|
* Added Volkers "print server role" patch.Jeremy Allison2003-02-201-0/+22
| | | | Jeremy.
* Add -V option (to print out version) to utilities where possibleJelmer Vernooij2003-02-183-0/+3
| | | | (pdbedit already has a -V option..)
* Add the 'session key' output of the NTLMSSP exchange to the cli struct, soAndrew Bartlett2003-02-161-7/+1
| | | | | | | | | it can be used for 'net rpc join'. Also fix a bug in our server-side NTLMSSP code - a client without any domain trust links to us may calculate the NTLMv2 response with "" as the domain. Andrew Bartlett
* Recover much of my changes to editreg.c. Add some const and start codingRichard Sharpe2003-02-161-8/+203
| | | | the regedit file parser etc.
* Antti Andreimann <Antti.Andreimann@mail.ee> has done some changes to enableAndrew Bartlett2003-02-151-2/+14
| | | | | | | | | | | | | | | | | | | | | | | | | users w/o full administrative access on computer accounts to join a computer into AD domain. The patch and detailed changelog is available at: http://www.itcollege.ee/~aandreim/samba This is a list of changes in general: 1. When creating machine account do not fail if SD cannot be changed. setting SD is not mandatory and join will work perfectly without it. 2. Implement KPASSWD CHANGEPW protocol for changing trust password so machine account does not need to have reset password right for itself. 3. Command line utilities no longer interfere with user's existing kerberos ticket cache. 4. Command line utilities can do kerberos authentication even if username is specified (-U). Initial TGT will be requested in this case. I've modified the patch to share the kinit code, rather than copying it, and updated it to current CVS. The other change included in the original patch (local realms) has been left out for now. Andrew Bartlett
* Revert Flag testing upon abartlet's request ;-)Volker Lendecke2003-02-071-3/+5
| | | | Volker
* Make account flags editable with pdbedit.Volker Lendecke2003-02-061-4/+22
| | | | Volker
* Grrr. Kill all BSD-isms... Spotted by Paul Green <paulg@sw.stratus.com>.Jeremy Allison2003-02-031-1/+1
| | | | Jeremy.
* Always escape ldap filter strings. Escaping code was from pam_ldap, but I'm toAndrew Bartlett2003-02-011-1/+7
| | | | | | | | blame for the realloc() stuff. Plus a couple of minor updates to libads. Andrew Bartlett
* Add 3 second timeout when terminating server and sending print notifyJeremy Allison2003-01-301-1/+1
| | | | | | messages. Stops build-up of large numbers of smbd's waiting to terminate on large print throughput. Jeremy.
* The REQ_DEBUGLEVEL message returns a string not a list of integers.Tim Potter2003-01-301-4/+1
|
* Make the vampire code use just pdb calls - allowing better operation on systemsAndrew Bartlett2003-01-291-22/+15
| | | | | | | | | that are not configured with an add user script, and have an _nua backend for storage. We really need to get the PDB backends out of the IDMAP game... Andrew Bartlett
* Use new interface for cli_samr_query_dispinfo().Tim Potter2003-01-291-2/+9
|
* Properly display popt errors. Also fix debug to be -d for consistency with ↵Jim McDonough2003-01-211-2/+3
| | | | other progs.
* Deleted arguments to help output - they didn't work.Tim Potter2003-01-211-1/+1
|
* the 'static' keyword here is useless as we are not declaring aAndrew Tridgell2003-01-171-1/+1
| | | | variable or function
* 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).
* Updates to the NTLMSSP code again - moving the base64 decode fuctionality outAndrew Bartlett2003-01-161-29/+150
| | | | | | | | | | | | | of the SWAT code, and adding a base64 encoder. The main purpose of this patch is to add NTLMSSP support to 'ntlm_auth', for use with Squid. Unfortunetly the squid side doesn't quite support what we need yet. Changes to winbind to get us the info we need, and a couple of consequential changes/cleanups in the rest of the code. Andrew Bartlett
* * removed unused variable from rpcclient codeGerald Carter2003-01-154-8/+11
| | | | | * added container option to net command (patch from SuSE) * Makefile patch for examples/VFS from SuSE
* add help text for 'net ads lookup'Andrew Tridgell2003-01-141-0/+2
|
* Patch from metze to to make testparm show values for 'workgroup', 'netbiosAndrew Bartlett2003-01-131-1/+2
| | | | | | | | name' and 'netbios scope'. Probably has a similar effect on SWAT. Also adds '-V' to testparm. Andrew Bartlett
* Fix a number of client-side fstring/pstring mixups.Andrew Bartlett2003-01-112-4/+4
| | | | Andrew Bartlett
* Some fixes to editreg. Clientgen should not be touched, and an update to ↵Richard Sharpe2003-01-081-3/+0
| | | | configure that Herb needs.
* Fix memory leak. Thanks, Herb!Volker Lendecke2003-01-071-0/+1
| | | | Volker
* this makes it compile, but I'm not sure if it is correct. Are we reallyHerb Lewis2003-01-071-1/+1
| | | | testing a pointer value to be equal to 0x19 ???
* Create a machine account correctly if the unix account exists.Volker Lendecke2003-01-071-4/+14
| | | | | | With this, my test for W2kSP3 join after pdbedit -a -m works fine. Volker
* 'index' is the name of a libc function. Rename to 'ndx' to avoid compilerTim Potter2003-01-071-4/+4
| | | | warnings.
* WITH_SENDFILE #ifdef merged from SAMBA_2_2Gerald Carter2003-01-021-1/+1
|
* Add a dash of static.Andrew Bartlett2003-01-021-3/+3
|
* BIG patch...Andrew Bartlett2003-01-0215-86/+83
| | | | | | | | | | | | | | | | 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
* fix also net rpc shutdownSimo Sorce2002-12-301-10/+1
| | | | sorry
* Revert by Simo's request. HEAD and 3.0 should be in sync forJeremy Allison2002-12-281-10/+2
| | | | | this except for the modules load. Jeremy.
* Patch for coredump with missing arg from "Bradley W. Langhorst" ↵Jeremy Allison2002-12-281-1/+8
| | | | | | <brad@langhorst.com> Jeremy.
* Finish adding strings to all talloc_init() calls.Jeremy Allison2002-12-231-1/+1
| | | | Jeremy.
* Forward port the change to talloc_init() to make all talloc contextsJeremy Allison2002-12-206-13/+51
| | | | | named. Ensure we can query them. Jeremy.
* Start adding code to allow the in memory version of the registry treeRichard Sharpe2002-12-171-23/+168
| | | | structure to be manipulated. Keys can be partially deleted now.
* fix usage messageGerald Carter2002-12-161-2/+3
|
* We now read in the whole of the registry, including security bits.Richard Sharpe2002-12-161-13/+21
| | | | | | Still have to make sure that the datastructure is correct, though. Then on to writing it out and editing/changing keys, values and sec_descriptors
* Fix fnum leak under error condition in cacl_dump.Tim Potter2002-12-151-6/+13
|
* All the code for reading in the registy is done, but I have a malloc'dRichard Sharpe2002-12-151-21/+83
| | | | area overrun somewhere :-(
* Almost finished processing the registry encoded SEC DESC ...Richard Sharpe2002-12-151-1/+102
| | | | Soon to move onto writing these things out.
* More code to read in and create security descriptor entries ...Richard Sharpe2002-12-141-28/+121
|
* Begin to handle Security descriptors for keys.Richard Sharpe2002-12-131-0/+95
|
* merge of smbpasswd segfault from SAMBA_2_2Gerald Carter2002-12-121-7/+10
|
* Fix a small bug.Richard Sharpe2002-12-111-2/+2
|
* Improve the iterator wrt values ... Now prints keys and value names.Richard Sharpe2002-12-111-6/+60
| | | | Does not print value values, yet.
* Tidy up some bits. We can now at least list all the keys.Richard Sharpe2002-12-101-16/+26
| | | | | | More work to do on the iterators and access functions. Still not King. Stinks really.
* Add support to Makefile.in for editregRichard Sharpe2002-12-101-3/+0
| | | | Fix a couple of duplicated macros.