summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Remove silly ideas about taking the LM or NT hash as a password in pam_smbpass.Andrew Bartlett2002-11-241-19/+0
| | | | | | | | Andrew Bartlett
| * No need to #include smb.h, when we already #include include.hAndrew Bartlett2002-11-246-7/+0
| |
| * Add ntlm_auth, a new program to provide a stable interface to winbind'sAndrew Bartlett2002-11-244-42/+470
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | authentication code. In particular, ntlm_auth is designed to replace the winbind authentication 'helpers' currently supplied by Squid. I have added support for the current plaintext password protocol used by Squid, and will add the real guts (NTLMSSP support) shortly. I'll merge this into 3.0 when I've got the interface more stable (error message format etc) and got the important NTLMSSP support added. Also move SWAT's URL decoding code into util_str.c, for use in both utilities. Andrew Bartlett
| * [merge from APP_HEAD]Gerald Carter2002-11-235-29/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | 90% fix for CR 1076. The password server parameter will no take things like password server = DC1 * which means to contact DC1 first and the go to auto lookup if it fails. jerry
| * a working timegm() function for systems that don't have itAndrew Tridgell2002-11-231-18/+15
| |
| * Please compile with :Jeremy Allison2002-11-231-20/+26
| | | | | | | | | | | | -g -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual if you're using gcc. It really does help ! Jeremy.
| * Lots of fixes for error paths where tdb_fetch() data need freeing.Jeremy Allison2002-11-2314-58/+112
| | | | | | | | | | Found via a post from Arcady Chernyak <Arcady.Chernyak@efi.com>. Jeremy.
| * jcmd really should run with a higher compiler warning level more often :-).Jeremy Allison2002-11-231-1/+1
| | | | | | | | Jeremy.
| * Rerun autoconf.Tim Potter2002-11-221-17738/+8862
| |
| * Here's a bit of a cleanup of the {configure,Makefile}.in files. I'veTim Potter2002-11-222-64/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | now combined all the ad-hoc AC_SUBST variables into three generalised ones: EXTRA_BIN_PROGS Additional programs to install in ${prefix}/sbin EXTRA_SBIN_PROGS Additional programs to install in ${prefix}/bin EXTRA_ALL_TARGETS Additional targets to build by default SHLIB_PROGS Shared library objects (pam, winbind) to build We also build some extra stuff by default: the python extensions (if --with-python specified), smbmount related binaries (if --with-smbmount specified), and the samba torture suite. The idea behind this is to have everything that is configured built by default to detect breakage as soon as possible when people make low level changes.
| * Added some extra code to test absence/presence of LM and NT passwords.Tim Potter2002-11-221-8/+17
| |
| * Fixed some compiler warnings.Tim Potter2002-11-222-5/+6
| |
| * Fixed some globals that escaped the recent globalcide.Tim Potter2002-11-222-10/+2
| |
| * Add support for 'restrict anonymous=2' and make the doco give a slight hintAndrew Bartlett2002-11-222-25/+9
| | | | | | | | | | | | | | | | | | | | as to what it now does in 3.0. Needs more work, but better than documenting the old functionality :-). As the security benifits of this are nullified by a setting of 'guest ok' on any share, we might want to put some documentation there too. Andrew Bartlett
| * Add support for new 'F' format, which is a string in the defaultMartin Pool2002-11-221-34/+64
| | | | | | | | codepage.
| * If you don't specify --with-python, we assume "python" anyhow, becauseMartin Pool2002-11-212-1613/+491
| | | | | | | | the extensions are not built until you specifically "make python_ext".
| * get_nt_error_msg from APPLIANCE_HEAD is called nt_errstr in HEAD. This ↵Jim McDonough2002-11-211-1/+1
| | | | | | | | should fix the build.
| * merge get_friendly_nt_err_msg() from app_headGerald Carter2002-11-211-0/+50
| |
| * fixed a number of places where we can try to free a wild pointer orAndrew Tridgell2002-11-201-2/+14
| | | | | | | | | | look for the record count after an invalid search. This fixes a segv in ldapsam
| * Ignore automatically generated Makefile.Tim Potter2002-11-201-0/+1
| |
| * Spelling fix.Tim Potter2002-11-204-4/+4
| |
| * more %U fixes for headAndrew Tridgell2002-11-202-0/+4
| |
| * a better for for using %U in smb.confAndrew Tridgell2002-11-193-8/+32
| | | | | | | | | | this follows the method used for remote_machine and also fixes the problem of anonymous connections clobbering the string
| * Fixed two very, very minor typos (that sort of just annoyed me).Christopher R. Hertel2002-11-191-2/+2
| |
| * Very curious. It turns out attribute matching on truncate only mattersJeremy Allison2002-11-191-2/+2
| | | | | | | | | | | | when opening truncate with current SYSTEM|HIDDEN -> NONE. It's fine to truncate on open with current NONE -> SYSTEM | HIDDEN. Jeremy.
| * Merge from appliance:Tim Potter2002-11-191-6/+16
| | | | | | | | >Fix memory leak in cli_ds_getprimarydominfo()
| * Fix typo in docstring.Tim Potter2002-11-191-1/+1
| |
| * Added HIDDEN/NORMAL attribute test.Jeremy Allison2002-11-181-1/+49
| | | | | | | | Jeremy.
| * Bug fix from appliance - we must initialise the winbindd server stateTim Potter2002-11-181-2/+2
| | | | | | | | before reading smb.conf parameters, not after.
| * Don't pass a function to ADS_ERR_OK().Jim McDonough2002-11-181-6/+13
| |
| * Revert ADS_ERR_OK change. Some compilers didn't like it.Jim McDonough2002-11-181-1/+1
| | | | | | | | | | | | The problem is that ADS_ERR_OK() run on a function that returns an ADS_STATUS causes the function to be run mulitple times...so you have to return a status, then check it with the macro.
| * Back out some goofs that accidentally checked in with printer publishing.Jim McDonough2002-11-181-3/+3
| |
| * Next step of printer publishing.Jim McDonough2002-11-183-196/+280
| | | | | | | | | | | | | | | | net ads printer publish <printername> [servername] Will retreive the DsSpooler and DsDriver info by rpc for a remote server then publish it. Next comes doing it within smbd
| * bad date string in specfileGerald Carter2002-11-181-1/+1
| |
| * sync packaging changes with SAMBA_3_0Gerald Carter2002-11-185-161/+172
| |
| * use ${RPM} for rpm v4.1Gerald Carter2002-11-181-14/+66
| |
| * formatting fixGerald Carter2002-11-181-35/+35
| |
| * the change in the way %U is handled to use current_user has brokenAndrew Tridgell2002-11-181-0/+3
| | | | | | | | | | | | | | some basic usages like 'include = smb.conf.%U' This changes fixes things again, by checking for reload after we setup current_user in tconx.
| * Renamed uuid_to_string() to guid_to_string() to avoid conflict with OSF DECTim Potter2002-11-171-1/+1
| | | | | | | | headers.
* | [print notify fixes from APP_HEAD]Gerald Carter2002-11-265-286/+191
| | | | | | | | | | | | | | | | * fixing change notify on print server handle * adding change notify support into smbcontrol for sending comment changes, etc... All part of CR 1159/1160
* | [merge from APP_HEAD]Gerald Carter2002-11-235-29/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | 90% fix for CR 1076. The password server parameter will no take things like password server = DC1 * which means to contact DC1 first and the go to auto lookup if it fails. jerry
* | Please compile with :Jeremy Allison2002-11-231-20/+26
| | | | | | | | | | | | -g -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual if you're using gcc. It really does help ! Jeremy.
* | Lots of fixes for error paths where tdb_fetch() data need freeing.Jeremy Allison2002-11-2314-58/+112
| | | | | | | | | | Found via a post from Arcady Chernyak <Arcady.Chernyak@efi.com>. Jeremy.
* | jcmd really should run with a higher compiler warning level more often :-).Jeremy Allison2002-11-231-1/+1
| | | | | | | | Jeremy.
* | Added more notes from Samba Mailing List so this info does not get lost!John Terpstra2002-11-221-0/+439
| |
* | Trying to fix module handling. Not final yet.John Terpstra2002-11-221-11/+2
| |
* | Added install-everything option.John Terpstra2002-11-221-2/+4
| |
* | Restrict anonymous=2 support merged from HEADAndrew Bartlett2002-11-222-25/+9
| |
* | Sync docbook directory with HEAD.Tim Potter2002-11-2231-1161/+657
| | | | | | | | | | | | Sorry but there are way too many changes to track down all the commit messages and list them here. Most of the changes look like updates and cleanups from Jelmer though.
* | get_nt_error_msg from APPLIANCE_HEAD is called nt_errstr in HEAD. This ↵Jim McDonough2002-11-211-1/+1
| | | | | | | | should fix the build.