summaryrefslogtreecommitdiff
path: root/source3
AgeCommit message (Collapse)AuthorFilesLines
2003-03-19Remove py_samba.c experiment - it didn't work.Tim Potter2-68/+1
(This used to be commit e69c061211e9c64201b54087d1381740d82cbbcd)
2003-03-19Put group mapping into LDAP.Volker Lendecke1-30/+471
Volker (This used to be commit da83d97eb50c3c3a67985e22410842100207431f)
2003-03-19Put group mapping into LDAP.Volker Lendecke1-1/+501
Volker (This used to be commit f0f1518fc450834725902e9cdf33fb8d35f99360)
2003-03-19Fix debug message not to use an uninitialized variable.Volker Lendecke1-2/+1
Volker (This used to be commit 80bfa7efd65af02108e3ef1e2b2952cda6dc5999)
2003-03-19Add additional StrCaseCmp test cases.Martin Pool1-2/+14
Doc. (This used to be commit ac6027884b04943fac3d469ff6542d62293f46cc)
2003-03-19Fix debug message not to use an uninitialized variable.Volker Lendecke1-2/+1
Volker (This used to be commit 71906a5b4e4f93ebd4c27a0d22d74aad62e14924)
2003-03-19Add an STF module that defines the tests to be run by "make check".Martin Pool1-0/+33
(This used to be commit a5a2cc9ae9668e66d39beed1fdad4df0405fa4da)
2003-03-19Get rid of "make check" targets that call nonexistent code.Martin Pool1-30/+15
Add in new ones that run STF, after setting up a PATH and LD_LIBRARY_PATH that will let them find samba in the build directory. LD_LIBRARY_PATH is probably not portable but without libtool I don't know a portable way to do it. Perhaps the simple solution is just to link these things statically? (This used to be commit 27c1626ae0a30bf0f01ea6d6df5836425e6f9547)
2003-03-19A new STF test case! This one checks strcasecmp correctness forMartin Pool1-0/+57
various strings. (This used to be commit ef5bdb1700f6033f342d6bb32a8d0ee240dd34b8)
2003-03-19Add the correct file :-( to ignore .po and .po32 files.Martin Pool1-0/+2
(This used to be commit 00b147882221dbb92673bc19fb0572718e3b10c6)
2003-03-19Remove this .po file from the repository. I meant to add a cvsignoreMartin Pool1-0/+0
file that ignored it, but I slipped. (This used to be commit a3f90cc6ab2735296ca482c8e29dc1d83804e205)
2003-03-19Ignore t_strcmp test case.Martin Pool1-0/+1
(This used to be commit 705db537c5c8495ce39d7ca609de4a2ee1bba6a5)
2003-03-19Ignore .po and .po32 files.Martin Pool1-0/+0
(This used to be commit 9a8d50d45c352a22b9b67adb1548482ab2c3265c)
2003-03-19Run test 10000 times to make measurement easier.Martin Pool1-2/+7
(This used to be commit e051789ac6cc05f8a643ea81e887d3b969cf3a27)
2003-03-19Doin't pstrcpy into fstring.Jeremy Allison1-4/+4
Jeremy. (This used to be commit e619c50834a06b3026dc6b8603d1f88268bbdbc1)
2003-03-18Ensure dev in make_connection is const.Jeremy Allison2-4/+10
Jeremy. (This used to be commit e8155fade61e9dc308a82f442453803160c36806)
2003-03-18Ensure dev in make_connection is const.Jeremy Allison2-5/+11
Jeremy. (This used to be commit 1c6ea31b8f48b93606f4c5b6a0472571dc8a471e)
2003-03-18Removed unused var.Jeremy Allison1-2/+0
Jeremy. (This used to be commit f93c64b5ca1bc21f5fa89200034cd82dcbc0910b)
2003-03-18Removed unused var.Jeremy Allison1-2/+0
Jeremy. (This used to be commit fb925a72a6323d96d8fae658c4271ca05e8256de)
2003-03-18const warning fix.Jeremy Allison1-1/+2
Jeremy. (This used to be commit 478a5c654a6d2765b726e9a8ef64af7716cb56c0)
2003-03-18Merge mbp's HEAD changes.Jeremy Allison2-34/+72
Jeremy. (This used to be commit da1271a95fce7fd217555fb161d4669d0b9b80e2)
2003-03-18Add const.Andrew Bartlett1-2/+2
(This used to be commit 38a6ad95d789b3ece7a8e697195c8851663b3cd9)
2003-03-18Put in some macros for the new modules systemJelmer Vernooij1-0/+25
(This used to be commit b6272a8f18c823be3056d9f03810be75e9129cce)
2003-03-18Makefile updates for new SMB signing code.Andrew Bartlett1-2/+2
(This used to be commit fa10640630cd893c30aa75f8b94e906199cecbe6)
2003-03-18Parinoia fixes from HEAD - malloc() some extra room after the allocatedAndrew Bartlett1-2/+2
buffer size. (This used to be commit 27ec538eca0905e1f749de4c49cc2555c5932d5c)
2003-03-18Merge from HEAD:Andrew Bartlett5-160/+77
A much better SMB signing module, that allows for mulitple signing algorithms and correctly backs down from signing when the server cannot sign the reply. This also attempts to enable SMB signing on NTLMSSP connections, but I don't know what NTLMSSP flags to set yet. This would allow 'client use signing' to be set by default, for server compatability. (A seperate option value should be provided for mandetory signing, which would not back down). Andrew Bartlett (This used to be commit 1c87be7a3d127201a6ab78d22d17c971af16b86b)
2003-03-18NMBD string parinoia and memcpy() parinoia fixes from HEAD.Andrew Bartlett3-10/+15
Andrew Bartlett (This used to be commit fb29caddd987f94989f852584b912eeee45b50da)
2003-03-18NTLMSSP updates from HEAD.Andrew Bartlett2-12/+30
Andrew Bartlett (This used to be commit f4ae028c2ad6ff8c7da3a6ef77a92762861144e1)
2003-03-18Jeremy merged across my string parinoia fixes, but forgot to enable them! :-)Andrew Bartlett17-108/+91
This patch catches up on the rest of the work - as much string checking as is possible is done at compile time, and the rest at runtime. Lots of code converted to pstrcpy() etc, and other code reworked to correctly call sizeof(). Andrew Bartlett (This used to be commit c5b604e2ee67d74241ae2fa07ae904647d35a2be)
2003-03-18Merge signed/unsigned fix from HEAD.Andrew Bartlett1-1/+1
(This used to be commit 196628432130f826505187a27207a7b947e034cf)
2003-03-18One more on set_local_machine_name() taking a new 'perm' argument.Andrew Bartlett1-1/+1
(This used to be commit 29d909b184e0044f728091f3215eeb58bbeff437)
2003-03-18Fix segfault on FD_SET() when we have an fd of -1Andrew Bartlett1-0/+3
Andrew Bartlett (This used to be commit 92bd0f69df4eef612b73da00e45d244f5236afa2)
2003-03-18Merge whitespace to match HEAD.Andrew Bartlett1-17/+17
(This used to be commit 454fb434195b8d46cbcbaee6a200070e5bcd7364)
2003-03-18Add an extra parameter to our 'set_remote_machine_name' andAndrew Bartlett7-10/+37
'set_local_machine_name' so that the client can't change it from under us. (.NET RC2 and WinXP install calls the machine 'machinename' during NTLMSSP on the domain join). Andrew Bartlett (This used to be commit 4c7163e7c2cc09bd95faa05156ee480957a7a4d8)
2003-03-18Add const.Andrew Bartlett1-1/+1
(This used to be commit ed245023016779700571d108e7b9339236bcbe7c)
2003-03-18Step one of optimizations for StrCaseCmp:Martin Pool1-7/+72
First of all, do a char-by-char walk through both buffers until we get to a non-ascii character, or a difference between the strings. This prefix can be directly compared without needing to call into iconv. This should be much faster for strings that are either all ascii, or differ near the start. (This used to be commit f7f692b2db4dd513068d6d8fed2792186933ddda)
2003-03-18Add t_strcmp test/torture harness.Martin Pool1-1/+4
(This used to be commit 2c17cb1bd27658ac7a72cb9eccb4b048e9d0ec5f)
2003-03-18This commit was manufactured by cvs2svn to create branch 'SAMBA_3_0'.(This ↵cvs2svn Import User15-0/+2058
used to be commit f0d009c3e91979b0dc3443e16f3f545bcc64cfda)
2003-03-18Split "clobber" function and variables into its own file before itMartin Pool3-40/+61
grows too much larger. (This used to be commit 4bbddbfc6a97ebb11e299aa7bd07ebebeab42c65)
2003-03-18Merge of waider's rpcclient return type patch.Tim Potter10-203/+223
(This used to be commit fb91bfa7a28f548dcc549f7e09805e4485c83538)
2003-03-18Merge of enumdomusers rpcclient command.Tim Potter1-0/+75
(This used to be commit 8cabdd635df2455d9b25604f2ea0fb85efa067e2)
2003-03-18Merge of popt help cleanups.Tim Potter1-5/+5
(This used to be commit 067810ed4a38c567e64e683a24cdd405479b5ee1)
2003-03-18Merge of #ifdef'ed out auth_smbd wrapper.Tim Potter1-1/+71
(This used to be commit fc0b2fcf977b9014d2478296168b22e9faa22108)
2003-03-18Ignore t_stringoverflow binary.Martin Pool1-1/+2
(This used to be commit 195582c4cb7906ab95e47f5a2aea4ae86a7ab023)
2003-03-18Ignore .po and .po32 files.Martin Pool1-0/+3
(This used to be commit 8d64419625dda242fdb7a5d956644b052b43a2ea)
2003-03-18Comment about deprecated macro overmalloc_safe_strcpy().Martin Pool1-0/+6
(This used to be commit 5ac062580690eee9b4bd423dbb82631c0cdb8b30)
2003-03-18Remove static libbigballofmud, which just does not seem to link.Martin Pool1-3/+7
Add bin/t_stringoverflow test case. Not built by default. (This used to be commit 7741bb8d18e7ba16522c00513174f2909d75535d)
2003-03-18The new string macros catch a bug at compile that previously onlyMartin Pool1-0/+7
trapped at runtime, which is great. So we have to try a little harder to provoke an overflow -- which is still caught nicely in developer mode. (This used to be commit cea126f62ad411f5efbebc7c5d39297fd8ef9efb)
2003-03-18Update comment: Valgrind 1.9.4 seems to always respect clientMartin Pool1-1/+1
requests, without needing --client-perms=yes. (This used to be commit 412a8780c35ee9449c9682e3ef73afb2c4933285)
2003-03-18Speling fixes and a little extra documentation.Martin Pool1-6/+6
(This used to be commit 8da383bb3e63d25ceb0204c775580f2f1b3336ec)