summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
* reformattingGerald Carter2003-09-051-102/+107
| | | | (This used to be commit 5c3094ee5558a85b9e688aca8044f228ec6fbb33)
* fix some problems with the findsmb script due to changes in smbclient & ↵Gerald Carter2003-09-051-29/+31
| | | | | | nmblookup (This used to be commit 50bb063f3ba0ce0f336bd9f1af3090839ee7b118)
* Very weird. On my SLES8 installation ntlm_auth would give missingVolker Lendecke2003-09-051-1/+1
| | | | | | | | kerberos symbols unless I do the same as smbd does. It does not hurt on my debian, so simply give a pointer to LDAPLIBS as well. Volker (This used to be commit 353d5272912ac11aa3ebf7403593177c45b20147)
* Fix for bug 282 that didn't get checked in.Tim Potter2003-09-051-1/+1
| | | | (This used to be commit e3f5afb83142f44369dcd341d6e66ed2fe51248f)
* fix bug 397: use a variant of alloc_sub_basic() for string lists.Gerald Carter2003-09-052-1/+34
| | | | (This used to be commit 62d5611df0cf86c267d7fe820822d4d019ae28bd)
* should fix bug 364 & 311: Retry patch based on suggestion fromGerald Carter2003-09-051-142/+316
| | | | | | | Ken Cross. Sometimes ads conenction get stale but we don't know they are dead until we try them. This patch may need some optimization after people bang on it for a while. (This used to be commit 7021cf63a4501c90620cf6a5f117eef345bbd291)
* Fix for bug #73. Name types can be specified using name#type notation.Tim Potter2003-09-051-7/+31
| | | | | Also added shortcut so that 'net lookup foo#1b' works. (This used to be commit f38679201e301d66473e74506f07812590d19fa4)
* Move $(KRBCLIENT_OBJ) to libnss_wins PICOBJ variable so it is converted toTim Potter2003-09-051-5/+8
| | | | | | | | | relocatable form. Added a comment about this in the hope that it won't happen again. Renamed PAM_WINBIND_OBJ to PAM_WINBIND_PICOBJ to make it a bit clearer. (This used to be commit 04797e12d85a4b4d616397dd1283e5a65af5adab)
* Hand optimisatinos for strrchr_m using the properties we know about MBJeremy Allison2003-09-051-11/+47
| | | | | | character sets and how we use this call. Jeremy. (This used to be commit a9709700eea3bb48ab4a79d74e0b8d22dc98576f)
* Return 0 DFS links instead of -1 when dfs support is not enabled.Tim Potter2003-09-051-1/+1
| | | | | Possible fix for bug 403. (This used to be commit 6babab93ff845c18f7c0d73e6a016764e31f4fac)
* Removed {OLD,NEW}_NTDOMAIN cruft from mkproto.awkTim Potter2003-09-041-14/+0
| | | | (This used to be commit 061decb608a3c881e646617b623277895fc0c13e)
* Fastpath strchr_m for ASCII.Jeremy Allison2003-09-041-0/+13
| | | | | Jeremy. (This used to be commit b3176f2ec246441dd483dc9757a487535b1656e6)
* More hand-tuning of the fastpath. Don't do strlen() when we're doingJeremy Allison2003-09-042-14/+31
| | | | | | to walk to the end anyway. Jeremy. (This used to be commit 467cafdb1f7ddfb4278824f385b732975246a4f5)
* Check in Andrew's fix for bug #305 (always use lp_realm() )Gerald Carter2003-09-042-15/+9
| | | | | | | | Also make sure thet ads_startup uses lp_realm instead of just relying on the workgroup name. Fixes bug in net ads join when the workgroup defaults to "WORKGROUP" and we ignore the realm name. (This used to be commit b1763ace4e85f41574894e3807cabb5196fec661)
* Remove convert_string_internal completely from fast path when processingJeremy Allison2003-09-041-10/+18
| | | | | | NBENCH calls. Requires fixed buffer size for strdup_upper(). Jeremy. (This used to be commit e98fbfaf384bd2d3ebb002b0b981366377fb5ac0)
* Fix UNIX passwd sync properly. I've finally understoodJeremy Allison2003-09-042-99/+63
| | | | | | | the as_root parameter has bugger all to do with who you *currently* are, and everything to do with who you run the script as. Doh ! Jeremy. (This used to be commit 17a241d9f788b63fec091001cb72d34c09cf32a4)
* More FreeBSD PAM compile fixes. Don't redefine PAM_AUTHTOK_RECOVER_ERRTim Potter2003-09-041-0/+3
| | | | | if it already exists. FreeBSD 4.8 doesn't need the redefinition, 5.0 does. (This used to be commit 4a3727b03b0488fa82687014cb476b1971a78be8)
* Produce an error if --with-pam_smbpass is specified and we can'tTim Potter2003-09-041-3/+7
| | | | | | | | find libpam or security/pam_appl.h Also change the warnings when we can't do --with-pam_smbpass when is was requested to errors. (This used to be commit fe3fb58623c27472d54722b780af43c3e272abaf)
* Quieten level 0 debug when probing for modules. We shouldn't display so loudTim Potter2003-09-041-6/+22
| | | | | | | an error when a smb_probe_module() fails. Also tidy up debugs a bit. Bug 375. (This used to be commit 24a1720472f1340778dea76a88770520dca26f12)
* Used cachegrind to track down some bottlenecks.Jeremy Allison2003-09-044-12/+111
| | | | | | | | | | | Removed calls to clobber_region when not compiling with developer as they were hiding speed problems. Added fast path to convert_string() when dealing with ascii -> ascii, ucs2-le to ascii and ascii to ucs2-le with values <= 0x7F. This gives a speedup of 22% on my nbench tests. Next I will do this on convert_string_allocate. Jeremy. (This used to be commit ef140d15ea0d76a3e7cdcadbfd3e917c210a9411)
* Produce an error if --with-pam is specified but no PAM headers can beTim Potter2003-09-041-0/+7
| | | | | found. (This used to be commit dc43c2dd1b4cd02e996fe10f1684a6571b2fd3de)
* Fix up overlapping memcpy -> memmove found by valgrind.Jeremy Allison2003-09-031-1/+3
| | | | | Jeremy. (This used to be commit e0c1460c6b6af2b83ea205d8abeb37c71ca1d4c1)
* Try to add memory keytab support. It also includes much of the genericJim McDonough2003-09-031-1/+141
| | | | | | | | keytab support code, but it won't be enabled until we add that to smb.conf. Adapted from the work of Guenther Deschner (gd@suse.com). Please hammer on this... (This used to be commit a26fa5bee24c73cd835f59bb18162ab07760d76a)
* Proposed patch for #308. Needs testing.Jeremy Allison2003-09-021-7/+10
| | | | | Jeremy (This used to be commit e2b73477e772ac2f527719df0d3d64c67649bb1c)
* Disable rc4-hmac on broken heimdal setups. Pre-0.7 heimdal (or at least upJim McDonough2003-09-021-2/+10
| | | | | | | to a very recent snapshot) has arcfour-hmac code that doesn't work with windows. Love suggested detecting it via the existence of KEYTYPE_ARCFOUR_56 which only exists in working versions. (This used to be commit e039a61e51c50a1999ed8e375c4d5df8b622e310)
* Check for support for in-memory keytabs, which are needed to make heimdalJim McDonough2003-09-021-0/+22
| | | | | | work properly. MIT does not support them, so this check will be used to decide whether to use them. First part of fixing bug #372. (This used to be commit 85737fc9371d8208f3dd55d408958e357c48266e)
* Fix for bug 261. Create a configure #define for FreeBSD and a check inTim Potter2003-09-022-2/+6
| | | | | nsswitch/pam_winbind.h so we can compile properly on this platform. (This used to be commit 75411005fcab7ecf31940c5f7b87fd407166f98a)
* Fix comment strings to 43 bytes as per spec.Jeremy Allison2003-09-011-3/+2
| | | | | Jeremy. (This used to be commit f1ec43fae400455d20931ab2d3ecd8f9a6609050)
* Proper fix for #380 -- use different algorithm to generate codepagesAlexander Bokovoy2003-09-012-3/+19
| | | | | | source code which allows to take gaps into account thus making unneccessary extended [index] = value, syntax in to_ucs2 array (This used to be commit 4ab08a4bb8dbd023eb85d16a594d3c4ed066f9ac)
* Fix CP437 and CP850 syntax for old compilers removing ANSI C99-specificsAlexander Bokovoy2003-09-012-510/+64
| | | | (This used to be commit 61c671bd69674b9e1c4a8b72453dc6aae24b4323)
* Fix bug 342. Short version of --add now -a instead of -A.Tim Potter2003-09-011-2/+2
| | | | (This used to be commit 233568dd6b08d3dfb48a712b763dfc31c03b229d)
* We don't need to #include memory.h here. It's a BSD'ism and just includesTim Potter2003-08-311-1/+0
| | | | | string.h anyways. (This used to be commit 71034cede83b5605b25a4d3b640086294244c239)
* Remove cap_set_quota as it is the same as default oneAlexander Bokovoy2003-08-291-8/+3
| | | | (This used to be commit e123f1a8c8ecc0958e640ed204348d0c831f90f5)
* Update mount helper to take synonyms for file_mode and dir_mode (fmask and ↵Steve French2003-08-291-9/+28
| | | | | | dmask) (This used to be commit 89a0e97094fa85b6339f0ad0884cf55987758263)
* bumping versionGerald Carter2003-08-291-1/+1
| | | | (This used to be commit e5f091e79511c5dc15f750e81063a962471634f2)
* Fix some compiler warnings.Tim Potter2003-08-291-10/+8
| | | | (This used to be commit f566de0541373fab97caa6b0f574f79e68ae74dc)
* Add log2pcap to everything target.Tim Potter2003-08-291-2/+4
| | | | (This used to be commit fb446ba8117c5e24489520aaea6abd25d6396287)
* Fix bug found by tridge in 2.2.x. Ensure that %U substitution isJeremy Allison2003-08-283-8/+18
| | | | | | | restored on next valid packet if a logon fails. This has relevence if people are using su.exe within logon scripts ! Jeremy. (This used to be commit d405a93a9d3f9a1d93bb3289b00683fba3160bbe)
* Fixed warnings in secret code.Jeremy Allison2003-08-281-26/+0
| | | | | Jeremy. (This used to be commit 86ebf990431903b12ec24a4d9af00d665e828145)
* make sure using_samba 2ed. files get installed okGerald Carter2003-08-281-0/+7
| | | | (This used to be commit 55b6129bd106898ebfe976facacfe1d079492993)
* getting rid of copmpiler warningGerald Carter2003-08-281-0/+2
| | | | (This used to be commit d3f5c5c22026b2e1e4f02617a823505ae88eab24)
* fixing typos pointed out by Vance in WHATSNEWGerald Carter2003-08-282-2/+57
| | | | | | | | Include patch to manually set the machine trust account password (on request from jht) to mimic 2.2. behavior. last changes before RC2 (not counting syncing the docs). (This used to be commit ce090371449097d4e5010e1219d449db8b0ccac5)
* Add length warning on register name.Jeremy Allison2003-08-281-2/+12
| | | | | Jeremy. (This used to be commit 68d02ebbcd9bc4cf7c84763d03c903b1f2e55fb8)
* Fixed off-by-one bugs in workgroup name comparisons. Complain when aJeremy Allison2003-08-283-9/+16
| | | | | | workgroup name is >15 characters. Jeremy. (This used to be commit 35a0b3c035d50474eda97b015676885722737a95)
* Fix rename of struct gap. ab - LOOK AT THIS. You changed one moduleJeremy Allison2003-08-281-1/+1
| | | | | | but not the other. This now compiles but I need verification. Jeremy. (This used to be commit 787c9764b300651af83a6e54f3090cfcf078a8a9)
* Refactor charset plugins a bit and add CP437 module.Alexander Bokovoy2003-08-289-75/+597
| | | | | | | | | Now all 8-bit charsets with gaps (not all symbols defined) could be produced through one macro -- SMB_GENERATE_CHARSET_MODULE_8_BIT_GAP(CHARSETNAME) within source file with three charset tables. Full source code for such modules can be generated by source/script/gen-8bit-gap.sh script which was taken from GNU libc and changed slightly to follow our data types and structure. (This used to be commit 37042c7bc0f349370e93e4bed37d8fa371013247)
* revert a change to r1.397.2.91 because to operate like the docs; browseable ↵Gerald Carter2003-08-281-0/+7
| | | | | | for new home directories should be inheritied from the global defaults, not [homes] (This used to be commit ea54bfc211f874c23b79572d8fb89bac73ec21a3)
* Fix email address in copyright statementJim McDonough2003-08-281-1/+1
| | | | (This used to be commit ffc82460f2b6b703739d9f95dc878d31bc9b3367)
* skel_ -> cap_Alexander Bokovoy2003-08-281-51/+51
| | | | (This used to be commit 8bb033273a0fa20ba88ad6797c9a6ba092224e3b)
* Remove what looks like gcc-isms.Jeremy Allison2003-08-271-16/+17
| | | | | Jeremy. (This used to be commit ed72e0a1d56f0da29e4ef964f560f0962630e080)