summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
| * Move pdb_xml to source/Jelmer Vernooij2002-11-051-0/+561
| | | | | | | | (This used to be commit b68106a79e4536fa82d75dd330d07dba51bfeaf4)
| * Move pdb_mysql to source/passdbJelmer Vernooij2002-11-051-0/+975
| | | | | | | | (This used to be commit 1d742e14ad18070aee654071d159b8b7410d6f86)
| * Rerun autoconfJelmer Vernooij2002-11-051-8611/+17906
| | | | | | | | (This used to be commit 53736430f8b57dbad80cce62c2472e935cdd4dd9)
| * Add support to build plugins in source/Jelmer Vernooij2002-11-053-7/+397
| | | | | | | | (This used to be commit eb8965eeff3fb55d7041d9998b45da403ecb03a2)
| * See if char * makes the Irix C compiler happier than void *?Richard Sharpe2002-11-051-1/+1
| | | | | | | | (This used to be commit 6b218da6453032339f2451a434d14894050dd1b5)
| * Remove DRIVERFILE constant. It was removed with the old win95Tim Potter2002-11-054-7/+0
| | | | | | | | | | printer driver stuff. (This used to be commit cf6d2d9d9e2adbbb7a547784cb11d05ed624e410)
| * pytdbpack_pack_data: Oops, since B is separately encoded as buffer andMartin Pool2002-11-051-5/+8
| | | | | | | | | | | | length we need separate counters traversing the format and value sequences to pack them. (This used to be commit 49a0ba46e6693bb819440d4ab40045afc4a7ae17)
| * Update test cases.Martin Pool2002-11-051-28/+32
| | | | | | | | (This used to be commit db2c393dd488dad2ce95f3b3cf0297d5b0159ae7)
| * Make all of the required (I think) changes to make this code work forRichard Sharpe2002-11-051-25/+61
| | | | | | | | | | big endian and little endian systems. (This used to be commit f50051120f93b5f95f72dcb3df201979e6302f5b)
| * Rerun autoconf.Tim Potter2002-11-051-17330/+8612
| | | | | | | | (This used to be commit fd9aff634be7d6e59995cc44c6b08a7ae442747a)
| * Fix mysterious error message when running 'make python_{ext,install}'Tim Potter2002-11-052-5/+7
| | | | | | | | | | without configuring with python. (This used to be commit 01a89690a2e9d234188704c04e58b5dfa2e7d1f3)
| * Start handling Big Endian machines as well as little endian.Richard Sharpe2002-11-051-2/+2
| | | | | | | | (This used to be commit 8f45315b913a9574dfeedaadf5560d143b38ca05)
| * pytdbpack_unpack: Handle unpacking Buffers into (LEN, DATA): form listMartin Pool2002-11-051-21/+45
| | | | | | | | | | by appending, rather than preallocating. (This used to be commit d72b144e03b9a9cb3d676527ddc5b2d0e1ef42f8)
| * VFStest already has pop_common via smbd, so don't link it twice.Andrew Bartlett2002-11-041-1/+1
| | | | | | | | | | Andrew Bartlett (This used to be commit c70a3191d4ba8864f026a2ba6b35b9e415541aa7)
| * Add more test cases that now work.Martin Pool2002-11-041-1/+2
| | | | | | | | (This used to be commit 7827536c15ac27ebcc4e9c342be6e203248195f6)
| * pytdbpack_pack_data: Allow 'd' and 'w' formats to take either IntegerMartin Pool2002-11-041-2/+20
| | | | | | | | | | or Long arguments. (This used to be commit 2085595565b99295d04a6663aad1ccac5bc1b657)
| * Make sure uint32 unpacking is unsigned, and generates a Python long soMartin Pool2002-11-041-10/+10
| | | | | | | | | | that it can represent all the unsigned values (This used to be commit 2593e1588355643bb76a9b8869573fe38fd3bc3e)
| * Re-add some tests which do work with both implementationsMartin Pool2002-11-041-6/+6
| | | | | | | | (This used to be commit a9c2817c79f675b82ace4e21df7fa123f9a995c3)
| * Comment out test cases where the old and new parser are different.Martin Pool2002-11-041-60/+71
| | | | | | | | (This used to be commit 6be885da2ca0ee41db86c46625301b51858061af)
| * pytdbpack_calc_reqd_len: Correct calculation of packed length ofMartin Pool2002-11-041-5/+8
| | | | | | | | | | string types (This used to be commit 30525aee33237f5b17e1067a96d09b7ee0a516a6)
| * Change to representing buffers ('B') as (LEN, STRING) in Python,Martin Pool2002-11-041-130/+112
| | | | | | | | | | | | | | rather than as just a string. Makes the code more messy, but needed for compatibility with existing PSA Python code which seems to be too knotty to separate out. (This used to be commit 20d88a7d1e2a6d2daca29c5ffff3781197a97b57)
| * test_pack_extra: Add additional cases.Martin Pool2002-11-041-7/+12
| | | | | | | | | | test_pack_failures: Remove cases for which old code is too lax. (This used to be commit 631945a03a3bf4982177bc22ebccf096b2bb5b6c)
| * test_pack_extra: Better way of testing packing with extra values.Martin Pool2002-11-041-3/+3
| | | | | | | | (This used to be commit 12c3bb99a5f870b01ef389ddad1073fc92d2362c)
| * pytdbpack_calc_reqd_len: It's no longer an error to supply more dataMartin Pool2002-11-041-8/+2
| | | | | | | | | | values than are consumed. (This used to be commit 0c1cfe559877d51090409d67f983a82bbbbaa7e2)
| * DocMartin Pool2002-11-041-2/+5
| | | | | | | | (This used to be commit 21e41866425c6f8bf04b08b3edd5bf70caf56e32)
| * test_pack_extra: The old code does not complain when there are tooMartin Pool2002-11-041-1/+15
| | | | | | | | | | | | many data values for the format. Test that the new code behaves the same way. (This used to be commit b0143e77d64f6af977395cf39e50f35e46486157)
| * test_pack_failures: The old code does not complain when there are tooMartin Pool2002-11-041-6/+14
| | | | | | | | | | | | | | many data values for the format, so we don't test that here. test_large: New test case for packing/unpack a thousand values. (This used to be commit 04cad599f40faf234b40090806bcd1ac0473470f)
| * pytdbpack_calc_reqd_len: Make exception be thrown correctly when aMartin Pool2002-11-041-2/+5
| | | | | | | | | | | | | | | | | | non-string is used with a string format code. (It was being generated but not thrown.) Also call checked versions of some functions rather than FAST_* versions. (This used to be commit 1b681bd524764deaef657ef41c39d037ac7dcc7b)
| * test_pack_failures: The old and new code is not exactly the same aboutMartin Pool2002-11-041-33/+37
| | | | | | | | | | | | error detection, so now we don't care what exact error is returned as long as we get something. (This used to be commit 5ade138bb815d3184fa57ff9cb548f78405059c5)
| * test_pack: Coercing a dictionary to a sequence as it is packed is notMartin Pool2002-11-041-4/+0
| | | | | | | | | | compatible with the old code, and so it is removed from the test case. (This used to be commit ed0e4a670d4d62b63afdaf7d9f13e39b98cdf1b2)
| * Add FIXME about --with-pythonMartin Pool2002-11-041-0/+4
| | | | | | | | (This used to be commit 96741a251c731d71126dcf9c706f7bb7c954f6e7)
| * Move testsmbc.c to examplesJelmer Vernooij2002-11-041-455/+0
| | | | | | | | (This used to be commit fdd70614d2dc29f6a676c30e254a0bf024687fb4)
| * Add @BUILD_POPT@ to smbclientJelmer Vernooij2002-11-041-2/+2
| | | | | | | | (This used to be commit 24dd3886e8783b09094c3b32b4184055cd06e8c2)
| * Handle -p correctlyJelmer Vernooij2002-11-041-1/+1
| | | | | | | | (This used to be commit b69d5fffd97890f80df6675fb71bc230aacc8234)
| * Make IRIX happyJelmer Vernooij2002-11-042-19/+18
| | | | | | | | (This used to be commit aeb94bb0d7ad84b52a5f729a3e83f4fb00005771)
| * Becouse lib/popt_common.c uses POPT, we must not include it in LIB, we mustAndrew Bartlett2002-11-041-10/+14
| | | | | | | | | | | | | | | | | | | | link it on a per-program basis. Next step is to make -lpopt apply only to the right programs, which might help some of this kind of thing show up on Linux. Andrew Bartlett (This used to be commit a0d13cd3f0ca1738fbd978ac67876196cd0ee56c)
| * Allow 'normal' accounts in the non-unix-account range for smbpasswd - I hopeAndrew Bartlett2002-11-041-19/+20
| | | | | | | | | | | | this will fix some of the problems on the build farm @ Compaq (where they have a *lot* of accounts...). (This used to be commit 2c97b7e6480c2731739ccc52af97bc62a6228cfe)
| * Fix debugAndrew Bartlett2002-11-041-1/+1
| | | | | | | | (This used to be commit 5b5b8de70e46a15e9fb9b47c7af6cb0133f41217)
| * Move to the use of the 'initialised' flag, rather than the fact the pointer isAndrew Bartlett2002-11-041-8/+9
| | | | | | | | | | | | | | NULL. Andrew Bartlett (This used to be commit 2115335857acd2c4f5c89b95227b3762f4c052b0)
| * Try to fix popt dependencies - we were linking to popt before we built with it.Andrew Bartlett2002-11-041-6/+6
| | | | | | | | | | Andrew Bartlett (This used to be commit dd9c6214d1976d87679735ea392b1a76463206a4)
| * Any conversion to POPT must *always* add @BUILD_POPT@ or it just won't work onAndrew Bartlett2002-11-041-2/+2
| | | | | | | | | | | | | | systems other than linux. Andrew Bartlett (This used to be commit 80f1f68b6f0fa38dd1ef4b2cfabb07d3c8daf844)
| * The fixes from Tom plus a minor update from me.Richard Sharpe2002-11-045-174/+329
| | | | | | | | (This used to be commit 6db6a48711f51ee6add32953506cd5db33939a1b)
| * Extra little fix to vl's patch. Make sure the passdb and testparm messagesAndrew Bartlett2002-11-032-5/+9
| | | | | | | | | | | | | | | | say exactly the same thing - in particular that we can algorithmic rid base == 1000, and use the BASE_RID macro to avoid the use of magic numbers. Andrew Bartlett (This used to be commit b70f2a8047ac549841bc103932b38951e9814186)
| * make_server_info_guest() can need root for the ldapsam backendAndrew Tridgell2002-11-031-1/+4
| | | | | | | | (This used to be commit 918099f09618136c371e199803f5895f9cb702be)
| * Force algorithmic rid base to sane values and talk about it.Volker Lendecke2002-11-032-4/+33
| | | | | | | | | | Volker (This used to be commit ce5b2d991b42bbf6865ff75194f8ee4b46694841)
| * Remove obsolete function usage and some unused variablesJelmer Vernooij2002-11-021-27/+1
| | | | | | | | (This used to be commit 162431a88ccb0811ae9873ce4ceda11d2f1de8b7)
| * Remove dummy function I used for testingJelmer Vernooij2002-11-021-7/+0
| | | | | | | | (This used to be commit 15c71551db038071d981ca4e37ef505004e79b89)
| * Convert to popt.Jelmer Vernooij2002-11-021-75/+23
| | | | | | | | | | Removed -o and -a options - these have been broken since 2.2 without complaints from users (This used to be commit c8589a567b96dacc0b6c88c91b34f8211532bbfa)
| * Add more options to popt_common and use them. Current ones are:Jelmer Vernooij2002-11-023-28/+62
| | | | | | | | | | | | | | | | | | | | -V Version information -n Set netbios name -l Set directory to store log files in -d Set debuglevel -s Load specified configuration file -O Set socket options (This used to be commit 1602d5894947b59fd36c161053a66c0afe2c959c)
| * Clean up this a little - add comments describing a bit of what is going onAndrew Bartlett2002-11-021-5/+6
| | | | | | | | | | here. (This used to be commit 88455313f6551a75eff4df2f0ba91430948c1c78)