summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
* Added SRVSVC pipe support. I've started implementing NetServerGetInfo()Tim Potter2003-02-173-0/+217
|
* Add KRBCLIENT_OBJ to PYTHON_OBJ list.Tim Potter2003-02-171-1/+2
|
* Return a WERROR instead of a NTSTATUS like the rest of the srvsvcTim Potter2003-02-171-11/+7
| | | | rpc calls.
* If we didn't make the server_info correctly, then don't segfault trying toAndrew Bartlett2003-02-171-1/+3
| | | | | | set the 'guest' bit. Andrew Bartlett
* People were being tripped up by the fact that we havn't updated acconfig.hAndrew Bartlett2003-02-172-235/+3
| | | | | | | as we don't need it for autoconf 2.53. Remove it from CVS, and assert the newer autotools in configure.in Andrew Bartlett
* Add the 'session key' output of the NTLMSSP exchange to the cli struct, soAndrew Bartlett2003-02-165-10/+39
| | | | | | | | | 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.
* * set PRINTER_ATTRIBUTE_RAW_ONLY; CR 1736Gerald Carter2003-02-154-5/+40
| | | | | | | * never save a pointer to an automatic variable (they go away) implement a deep copy for SPOOLSS_NOTIFY_MSG to correct messages being sent that have junk for strings; fix in response to changes for CR 1504
* Third-party configuration scripts may produce undesirable additions to ↵Alexander Bokovoy2003-02-152-0/+31
| | | | | | | | | | | | | CFLAGS/CPPFLAGS and LIBS/LDFALGS. In particular, they often don't check where the appropriate libraries were installed and pass -I/usr/include and -L/usr/lib as part of CFLAGS/LDFLAGS. While the latter isn't dangerous, passing system include directory through -I lead to change of its status in CPP from system to user-defined in many cases. This patch cleans up CFLAGS/CPPFLAGS from errorenous -I/usr/include and LIBS/LDFLAGS from -L/usr/lib. This is done as two m4 macros which are called before AC_OUTPUT.
* Don't return NULL pointers for now.Andrew Bartlett2003-02-151-4/+4
| | | | | | | We should look into how to deal with NULL v "" strings, and the NTLMSSP code underneath properly at some stage. Andrew Bartlett
* fix dumb perror used without errno beeing set.Simo Sorce2003-02-151-2/+2
| | | | thanks to RedHat developers for the report
* When checking for tgetent, include libtinfo from recent Ncurses as wellAlexander Bokovoy2003-02-151-1/+1
|
* Add support for krb5-config from recent MIT and Heimdal. And fallback to ↵Alexander Bokovoy2003-02-151-1/+16
| | | | traditional guessing only if krb5-config was not found.
* Move our NTLMSSP client code into ntlmssp.c. The intention is to provide aAndrew Bartlett2003-02-157-128/+459
| | | | | | | | | | relitivly useful external lib from this code, and to remove the dupicate NTLMSSP code elsewhere in samba (RPC pipes, LDAP client). The code I've replaced this with in cliconnect.c is relitivly ugly, and I hope to replace it with a more general SPENGO layer at some later date. Andrew Bartlett
* Use more portable @SHLIBEXT@ instead of .soJelmer Vernooij2003-02-151-1/+1
|
* Remove obsolete file lib/netatalk.c - We have a VFS module nowJelmer Vernooij2003-02-153-159/+0
|
* Patch based on work by Michael Steffens <michael_steffens@hp.com> to wrapJeremy Allison2003-02-151-65/+107
| | | | | | all cm_get_XX calls and their subsequent requests in a retry loop in case we've temporarily lost connection to the DC. Makes winbindd more reliable. Jeremy.
* Antti Andreimann <Antti.Andreimann@mail.ee> has done some changes to enableAndrew Bartlett2003-02-1513-181/+475
| | | | | | | | | | | | | | | | | | | | | | | | | 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
* Move our NTLMSSP code into easily seperated peices, not relying on the wholeAndrew Bartlett2003-02-154-327/+353
| | | | | | of libsmb. Andrew Bartlett
* Oops, forgot the header file changes.Andrew Bartlett2003-02-141-0/+1
|
* NTLMSSP parinoia - we really don't want to run over the end of our blob,Andrew Bartlett2003-02-142-14/+46
| | | | | | and make sure we can never get an 'authenticate' packet without a challenge. Andrew Bartlett
* Ensure that only parse_prs.c access internal members of the prs_struct.Jeremy Allison2003-02-1411-79/+118
| | | | | Needed to move to disk based i/o later. Jeremy.
* off by one bug in string length; CR 1159Gerald Carter2003-02-141-1/+1
|
* Put dynrpc modules as part of make all, when specified in configure.Jim McDonough2003-02-141-4/+6
|
* Further extract our NTLMv2 code into smbencrypt.c, prior to merge into ourAndrew Bartlett2003-02-142-32/+51
| | | | | | NTLMSSP client code. Andrew Bartlett
* DocMartin Pool2003-02-141-1/+5
|
* Simplify some return values in gencache functions:Tim Potter2003-02-141-5/+5
| | | | | | | | | | - return ret == 0 ? True : False; + return ret == 0; and - return tdb_close(cache) ? False : True; + return tdb_close(cache) != -1;
* Fix for trusted domains scan not working inspired by Ken Cross.Tim Potter2003-02-142-7/+8
| | | | (Sorry - I should have checked this in yesterday but forgot)
* A few typo fixes Andrew eventually let off to me.Rafal Szczesniak2003-02-133-8/+8
| | | | Rafal
* Removed unused variable.Jeremy Allison2003-02-131-1/+0
| | | | Jeremy.
* Fix typo in WIFSIGNALED (as per Waider's report)Alexander Bokovoy2003-02-131-1/+1
|
* Merge JohnR's patch.Jeremy Allison2003-02-131-3/+1
| | | | | | | Removed extra copy of server name in the printername field (it was mangling the the name to be \\server\\\server\printer ... yes, there were 3 backslashes) reported by get & enum jobs level 2. Jeremy.
* Add FIXME about checking exit code for popen'd commands.Martin Pool2003-02-131-1/+4
| | | | Fix typo.
* waitstatus audit: Correctly handle case where smbmnt is killed by aMartin Pool2003-02-131-0/+3
| | | | signal. Previously this was incorrectly treated as success.
* DocMartin Pool2003-02-131-1/+9
| | | | Set HTML output directory
* Update towards automatic building on dp.samba.org:Martin Pool2003-02-131-5/+4
| | | | | | | | | | | | | | Remove features not supported by Doxygen 1.2.14 on RH7.3. Remove dependence on dot tool, which is apparently not in Redhat, and doesn't produce very interesting results for C code anyhow. Make Doxygen --quiet to support running from cron. Remove references to files which are gone from Samba (CodingSuggestions). Put HTML output in the right directory.
* Added code based on Michael Steffens <michael.steffens@hp.com> uid/gidJeremy Allison2003-02-121-1/+205
| | | | | | caching code. Reduces load on winbindd. Probably should be moved to use gencache at some future date. Jeremy.
* Fixes for HPUX only having limited POSIX lock range from Michael Steffens ↵Jeremy Allison2003-02-122-14/+9
| | | | | | <michael.steffens@hp.com> Jeremy.
* adding more descriptions for nt status codesGerald Carter2003-02-121-1/+66
|
* Match Samba 2.2 by chosing the correct desired access, and getting cupsaddsmbAndrew Bartlett2003-02-121-1/+1
| | | | | | back working again. Andrew Bartlett
* initial server side privileges implementation, using a tdb. This needs to be ↵Andrew Tridgell2003-02-124-7/+375
| | | | hooked into pdb, and we need some access control on changing privileges. That's next
* Prevent NULL-pointer induced segfaults.Andrew Bartlett2003-02-121-4/+4
| | | | | | Is tdb_pack in appliance_head different for some reason? Andrew Bartlett
* Correctly return access denied on share mode deny when we can't open theJeremy Allison2003-02-121-3/+19
| | | | | file. This is a regression that was damaged by other code. Jeremy.
* setup the %U substitution in winbindd for the homedir templateAndrew Tridgell2003-02-121-0/+1
|
* add a note about relative opens with blank paths - its a re-open!Andrew Tridgell2003-02-121-0/+10
| | | | (not implemented yet)
* add a note about a better method for finding netbios name of workgroupAndrew Tridgell2003-02-121-0/+7
| | | | (not implemented yet)
* pull_ucs2_talloc() should pull to a char**, not a void**Andrew Tridgell2003-02-121-2/+2
|
* removed a duplicate copy of smb_io_sid_array()Andrew Tridgell2003-02-111-46/+0
|
* added server stubs for lsa_enum_acct_with_rightAndrew Tridgell2003-02-114-0/+147
|
* Patch from Anthony Liguori <aliguor@us.ibm.com> to remove scandir() portabilityAndrew Bartlett2003-02-111-16/+15
| | | | | | madness. Andrew Bartlett