summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fix typo in debugGerald Carter2003-07-261-1/+1
| | | | (This used to be commit ed61628d8b051049636f48ec4372b2e19090628c)
* Updating missing flags.John Terpstra2003-07-261-0/+2
| | | | (This used to be commit 3b4693c3b28e9f428dc54b6c55298645431e0bda)
* Correctly detect an "add user script" - check that *lp_adduser_script() != '\0',Jeremy Allison2003-07-261-1/+1
| | | | | | not lp_adduser_script() != NULL. Jeremy. (This used to be commit 2eac65ebe7147b36a34e0ca1c3f455f559ab0361)
* Start the packet signing engine in the kerberos case in the same placeJeremy Allison2003-07-251-3/+8
| | | | | | as the ntlmssp case. Jeremy. (This used to be commit 79e0bf829875fc985f1940dc31ee418aad910ed6)
* W00t! Client smb signing is now working correctly with krb5 and w2k server.Jeremy Allison2003-07-257-19/+48
| | | | | | | | | | Server code *should* also work (I'll check shortly). May be the odd memory leak. Problem was we (a) weren't setting signing on in the client krb5 sessionsetup code (b) we need to ask for a subkey... (c). The client and server need to ask for local and remote subkeys respectively. Thanks to Paul Nelson @ Thursby for some sage advice on this :-). Jeremy. (This used to be commit 3f9e3b60709df5ab755045a093e642510d4cde00)
* Fix bug #184; set max_pw_age in account_pol to -1 so the default is never to ↵Gerald Carter2003-07-251-1/+1
| | | | | | expire (This used to be commit 833bc5c06018043cf0eb6bdcbb96922964286559)
* domain in schannel bind credentials must be the dest domain, not oursGerald Carter2003-07-252-1/+8
| | | | (This used to be commit e12f6a8c13f27c3caea96b467cc4294e20dad341)
* fix case where no realm or workgroup means to use our ownGerald Carter2003-07-251-2/+19
| | | | (This used to be commit 6edc7e0a744a5d8c6332758b800a2646ef16dd77)
* fix user_in_list to work with winbind groups again; my bugGerald Carter2003-07-251-1/+1
| | | | (This used to be commit 850f4fafdbaf19ea13273a8bf82433ba50a11868)
* fix some error returns and strings; patch from metzeGerald Carter2003-07-251-6/+14
| | | | (This used to be commit 948b1b138cf1fce18c93645fbdf948e589b19dc5)
* More printf portability fixes. Got caught out by some gcc'isms lastTim Potter2003-07-2515-37/+37
| | | | | time. )-: (This used to be commit 59dae1da66a5eb7e128263bd578f167d8746e9f0)
* new swat icons from Marc Jacobsen @ HPGerald Carter2003-07-258-0/+0
| | | | (This used to be commit 01919208c658c79fdd2251ec460be5dc5853bf0e)
* call chkconfig --del winbind on removal (bug #238)Gerald Carter2003-07-251-0/+1
| | | | (This used to be commit 942c3ae6e0dc69c1ed4bbc6b765bec0c98582e7f)
* fix libsmbclientr symlink (patch by Alex Duggan for bug #247)Gerald Carter2003-07-251-20/+5
| | | | (This used to be commit 67f3a26c26c3e88f3764bb1c34e94c1f6cbc58c0)
* fix bug config file path in winbind init script (bug #237)Gerald Carter2003-07-251-7/+2
| | | | (This used to be commit 92b59848ca9cfab52b9434e364bcaa1dad2afbaf)
* Schannel, once setup, may be used on *ANY* TCP/IP connection until theAndrew Bartlett2003-07-252-36/+83
| | | | | | | | | | | | | | | | connection that set it up has been shut down. (Also, pipes still connected, and reconnections to the same pipe (eg SAMR) may continue to use that session key until their TCP/IP connection is shut down) Allow further testing by printing out the session key, and allowing it's input into rpcclient. Next step is automatic storage in a TDB. Andrew Bartlett (This used to be commit fa4d7be1619b51aacec37ddf995c940b8100aef9)
* Make wbinfo -p work again. Fixes bug 251.Tim Potter2003-07-251-1/+1
| | | | (This used to be commit ad4dd4909ffa29dbfbbd9a4f234e976fd253846b)
* Jean-Baptiste Marchand on the ethereal list used some auditing tricks toTim Potter2003-07-251-10/+10
| | | | | | | | | | | | discover names for the SAMR specific permissions that were previously unknown. The existing constant names differ from what win2k calls them but since they aren't heavily used in Samba at the moment I'll leave them as they are. Jean-Baptiste's data is at: http://ethereal.ntop.org/lists/ethereal-dev/200307/msg00314.html (This used to be commit ae77e9e55438a9807da3696fd0d31fba6d0f7370)
* More printf fixes - size_t is long on some architectures.Tim Potter2003-07-2415-26/+26
| | | | (This used to be commit ba4d334b822248d8ab929c9568533431603d967e)
* Fix from matt.zinkevicius@hp.com to stop files being created on read-onlyJeremy Allison2003-07-241-0/+1
| | | | | | shares in some circumstances. Jeremy. (This used to be commit b826e8c8980d26e932da55384f109f0fe6a124c7)
* Fix packet signing with asynchronous oplock breaks. Removed bad error messageJeremy Allison2003-07-243-10/+75
| | | | | | | due to w2k bug. I think this code is now working.... Need more testing of course but works on all the obvious cases I can think of. Jeremy. (This used to be commit a6e537f6611cc1357fffea0b69901fba7c9ad6ea)
* Add a macro to check whether module-specific data set already or not. ↵Alexander Bokovoy2003-07-241-0/+3
| | | | | | Returns True or False. Should support further encapsulation of VFS-specific structs (This used to be commit 180e617f54021ced270c7c8cb86dd478d809d041)
* Rise debug level to 5 for not-found-nt-quota message (quota setting for user ↵Alexander Bokovoy2003-07-241-1/+1
| | | | | | wasn't found) (This used to be commit 422dffdc40742091df027fcffbc074eb2b1396dc)
* Some fclose -> x_fclose found by Tony Jago.Jeremy Allison2003-07-241-2/+2
| | | | | Jeremy. (This used to be commit 919078cf397155ede0169ce95a726d0fdbef696a)
* Ensure everywhere we defer an incoming SMB request (blocking lock queue,Jeremy Allison2003-07-244-250/+256
| | | | | | | | in oplock break state, change notify queue) we also push the MID onto the deferred signing queue. Tomorrow I will test this with valgrind and oplock tests. Jeremy. (This used to be commit 33a377f3726c85379ba5b962dd7c8ead337b892f)
* SMB signing is now working with change notify. Need to fix the disconnectJeremy Allison2003-07-243-19/+31
| | | | | | when bad signature received, plus check the oplock breaks.... Jermey. (This used to be commit dd83931a00ec0a2c4b78b939c54bc101ec82312f)
* Server side NTLM signing works - until the first async packet. Working on thisJeremy Allison2003-07-243-25/+122
| | | | | | next.... Jeremy. (This used to be commit eff74a1fcc597497a4c70589a44c1b70e93ab549)
* Some more [ug]id_t printf fixes.Tim Potter2003-07-241-4/+4
| | | | (This used to be commit 165d1ae55622ca1e89c94fc5e40bdf5cddbcab45)
* Ensure a prototype is generated for smb_snprintf()Tim Potter2003-07-231-1/+1
| | | | | Final bit for bug 187. (This used to be commit 13840704f5434bedef0ce21242e2dff7c2a0bddb)
* connect to the right realm or domain for trusted AD domainsGerald Carter2003-07-231-8/+4
| | | | (This used to be commit 83376671c511be4bb10d3fca8e49e5f6ef792b9c)
* fix typoGerald Carter2003-07-231-2/+2
| | | | (This used to be commit 9de53f309ca686abbe970d8d452bb75398214a6d)
* convert snprintf() calls using pstrings & fstringsGerald Carter2003-07-2325-87/+80
| | | | | | | to pstr_sprintf() and fstr_sprintf() to try to standardize. lots of snprintf() calls were using len-1; some were using len. At least this helps to be consistent. (This used to be commit 9f835b85dd38cbe655eb19021ff763f31886ac00)
* fixed segv in calls to pstrcpy() in cliprint.cAndrew Tridgell2003-07-231-6/+6
| | | | (This used to be commit 36bc2b99b4fec2c14f8471d89381b2d6c2f9d339)
* Fix out of date comment.Tim Potter2003-07-231-2/+1
| | | | (This used to be commit 2e5bd1665430768b06da99beba5ac11a59c9bf07)
* Move a function to avoid a warning.Tim Potter2003-07-231-24/+24
| | | | (This used to be commit a3b4c57503e0966145b0adab247297e4c8e0f165)
* Typo in comment.Tim Potter2003-07-231-1/+1
| | | | (This used to be commit 6a9bfcd3b8996a0322f733689fd5e8bf24f224c8)
* Don't check in two places for signing turned off...Jeremy Allison2003-07-231-3/+0
| | | | | Jeremy. (This used to be commit f4b02e52e25556e5b101d493e2e6404563bf96dd)
* A fix for bug 174. I'm pushing this to the tree to test it on one ofTim Potter2003-07-232-4/+10
| | | | | the build farm machines that I don't have direct access to (hpntc9I). (This used to be commit b01965823341bbabb74dcbc09d379b43db2ec680)
* Fix two memory leaks in the smb module:Tim Potter2003-07-231-1/+7
| | | | | | | - free talloc context when cli_query_secdesc() fails - dispose of cli_state when python cli_state_object is garbage collected (This used to be commit 36052f95ffad4f227596e8038d3f056312d0ad82)
* removing unused functionGerald Carter2003-07-221-43/+0
| | | | (This used to be commit b8394a107d3448434f1a34076eaab8e6dd9a8a9d)
* bumping version stringGerald Carter2003-07-221-1/+1
| | | | (This used to be commit e4cd21222dbd1a7a7f79618762799373230d4905)
* Fix commentAlexander Bokovoy2003-07-221-3/+3
| | | | (This used to be commit 04f1577a39b926317911f59714de5c5ca87f02bd)
* sync from bea3 releaseGerald Carter2003-07-221-2/+45
| | | | (This used to be commit e42cc1e920601883cd404e9b2292ca58554ccf63)
* Another round of uid/gid/pid format string changes I missed theTim Potter2003-07-227-13/+15
| | | | | first time. (This used to be commit 6616485dbad74dab7506609c6bfd183fc9c1f93c)
* Fixup a bunch of printf-style functions and debugs to use unsigned long whenTim Potter2003-07-2226-148/+172
| | | | | | | displaying pid_t, uid_t and gid_t values. This removes a whole lot of warnings on some of the 64-bit build farm machines as well as help us out when 64-bit uid/gid/pid values come along. (This used to be commit f93528ba007c8800a850678f35f499fb7360fb9a)
* Use %p for a pointer type in a printf-style format string. Also castingTim Potter2003-07-221-1/+1
| | | | | a pointer to a uint32 value is incorrect on a 64-bit architecture. (This used to be commit afed2cbbcc07de9e453156972250f5f9d22e8e83)
* Replace the eight (!) copies of dummy become/unbecome root with a single one.Tim Potter2003-07-2210-97/+43
| | | | (This used to be commit 8b818ce381595cdcb36631a2440d6aa0038805f1)
* Use lp_idmap_[ug]id() instead of lp_winbind_[ug]id()Tim Potter2003-07-221-3/+3
| | | | (This used to be commit cfb86b4503c13b34583a61ef01ca8e1ed00fb9e4)
* Metze's AD/LDAP detection patches mainly to do with library detection.Tim Potter2003-07-213-197/+326
| | | | | | | Tested on a large combination of operating systems and versions. Hopefully the build farm will find any remaining nasties if they exist. (This used to be commit 2e42fa3d7217615d90ad64261513bd1e8a65f535)
* Clarify a debug log a little. The path might not exist, so say so.Richard Sharpe2003-07-211-1/+1
| | | | (This used to be commit 8409cf3e470df79f219f9a21c0cb780e9257186c)