summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
* Ignore .po and .po32 files.Martin Pool2003-04-091-0/+2
| | | | (This used to be commit f01d94b027e0ca1530b2e50782a34c22706c643c)
* Tests for smbcontrol.Tim Potter2003-04-092-1/+240
| | | | (This used to be commit 7bf68a533ee76ffebf77c4d09abf42079579646f)
* Ignore testtmp directory.Tim Potter2003-04-091-1/+2
| | | | (This used to be commit 862e3ee421efc92ebfcb17eabe06efea3a64999f)
* poptify smbcontrolTim Potter2003-04-091-4/+4
| | | | (This used to be commit f75d4b90caa51cb2815c1be2de5f2058ec32e73d)
* Rewrite of smbcontrol - it was a bit of a mess. It should now be muchTim Potter2003-04-091-530/+573
| | | | | | | | | | | | | | | | | | | | | | | nicer to use and more hackable. - converted to popt - text message destinations (except for broadcast smbd) are resolved using files in piddir so the string 'winbindd' is now a destination - added --timeout option to specify timeout value - deleted complicated handling of debug args as separate command line arguments: use shell quoting instead - deleted interactive mode as punishment for using strtok() (-: - much improved command line argument checking Some of this stuff was broken before I started (print notify, profiling) but the basics still work (ping, pool-usage, debug, debuglevel). (This used to be commit 269f838dee257ee9badcae190f2c70b898676bc5)
* Set character set to default (UTF-8) before running tests.Martin Pool2003-04-091-0/+3
| | | | (This used to be commit b20d8b49701b532d4770197c5d08fa092234bf8e)
* t_push_ucs2, t_strcmp: Run tests only once by default, rather thanMartin Pool2003-04-092-6/+12
| | | | | | | 10000 times. (In theory they should be pure functions....) You can specify a parameter to repeat them if you want to e.g. measure performance. (This used to be commit 92acecd28c3374abcadbff0ab9cb765411f453f4)
* forgotten merge left on disk; remove extra SAFE_FREE()Gerald Carter2003-04-091-2/+0
| | | | (This used to be commit 4d42067cb89220a1b275bc8408c9c1ba2ef7766a)
* Install libsmbclient.h from $(srcdir)Tim Potter2003-04-091-1/+1
| | | | (This used to be commit d396f57678056af6b0c384df324f94992cca85d0)
* Autoconfiscate the name of the winbind shared library file. UnderTim Potter2003-04-092-9/+8
| | | | | | | | IRIX this is libns_winbind - everyone else is libnss_winbind. This simplifies the Makefile a bit and also fixes the 'nsswitch' target under IRIX. (This used to be commit 69c392bc127bf69876f4dedae8c3a6976219d448)
* Winbind client for AIX. Written by Steve Roylance.Tim Potter2003-04-091-0/+411
| | | | (This used to be commit e37d025e6724196925c43c8ce558064ed5c072c5)
* Ensure print queue array is zeroed out before returning.Jeremy Allison2003-04-091-0/+1
| | | | | Jeremy. (This used to be commit 337cac7810369430045d7a136176bd57e55adcde)
* reworked to not malloc PATH_MAX long stringsSimo Sorce2003-04-081-11/+11
| | | | | corrected path_name creation (This used to be commit f4be4e70a12edae83b9b89622ca5077a7d3d5602)
* Update smbmount to include unicode and lfs capabilities options -- smbfs ↵Alexander Bokovoy2003-04-081-9/+16
| | | | | | supports this already (This used to be commit a003a5f052a9ef7ad14f6f79157669d1bbd37f96)
* some more debugging in case of failureSimo Sorce2003-04-082-3/+4
| | | | (This used to be commit 9374f8692f6587b5f773c72b7847b64edeee9614)
* Integrate abartlet's t_push_ucs2 test into test framework:Martin Pool2003-04-084-5/+78
| | | | | | | | | | | | | | | | | - Build t_push_ucs2 as part of check-programs, the prerequisite for "make check". - t_push_ucs2.c: Load configuration from /dev/null so that we get a unix_charset of UTF-8 and can do meaningful UCS2 tests. Better comment. - Add a test to strings.py which tries conversion UTF8->UCS2->UTF8 and checks the results. Do this for English, Latin-1, and Katakana strings. - Add Python module with symbolic names for a handful of UNICODE characters. (This used to be commit 275e095c92ac74815ab9e388a0e83cdb7ddd85f3)
* Merge from 1.2.2.2:Martin Pool2003-04-081-1/+1
| | | | | Update for new ComfyChair interface. (This used to be commit 9de9899165fbf403e369d8ebadd171ffdde8c3b7)
* Patch from Steve Langasek <corlon@netexpress.net>John Terpstra2003-04-083-58/+85
| | | | | | | | | | | | | | | fix up two issues in pam_smbpass. The first, more important issue is adding support for the (apparently new) LOCAL_SET_PASSWORD flag to local_password_change(), without which pam_smbpass is a complete and utter no-op. The second, lesser issue is that with the advent of ldapsam, it's possible for pam_smbpass to generate a SIGPIPE that isn't handled by the calling application. The most basic signal wrapping is put in place to prevent this. Beyond that, the only thing in the patch is a bit of reformatting to make pam_smb_passwd.c look a bit more like the rest of the code in CVS. (This used to be commit 7cb5af35273097f913bff6894fe03050a18e1def)
* Added some preprocessor tricks to stop TRUE and FALSE from continuallyTim Potter2003-04-081-1/+14
| | | | | creeping back in to the source. Use True and False instead. (This used to be commit 5a5a7ce7479a56ca2d472658511a47c9147c0d5b)
* Merge from 3_0: Build a lookup table of valid DOS characters justMartin Pool2003-04-082-5/+59
| | | | | | once, when init_iconv is first called. Use this in check_dos_char rather than doing the conversion every time. Much faster. (This used to be commit e8f1399323745a93ba9df97553effcf2d7629850)
* We never actually got an 'ads' auth module, so don't send the auth subsystemAndrew Bartlett2003-04-071-1/+1
| | | | | | | off on a wild probing spree looking for it. Andrew Bartlett (This used to be commit 7c7c5594b3dfd460d09bccd409ccbf64c6b42338)
* Some comment updates, notably that I haven't seen the group membership arraysJim McDonough2003-04-071-0/+9
| | | | | yet (the ones that are rid-only). (This used to be commit 0a5b5d00db42de868c72ec3d9d1d747c9ef391e4)
* BUGS.txt -> Bugs Appendix in HOWTO collectionJelmer Vernooij2003-04-071-1/+1
| | | | (This used to be commit 1e1ef7a7b52f34ab784a7bac570235de221a64b6)
* remove unnened and wrong instructionsSimo Sorce2003-04-071-2/+0
| | | | (This used to be commit 671579874e51b28ffdfc094cdf34a0090567e0cc)
* fix wrong string handlingSimo Sorce2003-04-071-3/+4
| | | | | thanks to Stefan (metzte) Metzmacher (This used to be commit 99c2e11ccfe04867e84b467b0e82de8415c1dcee)
* Decode the PAC! This patch just decodes it and then frees it, so it's justJim McDonough2003-04-075-2/+636
| | | | | for doc purposes right now (you can see it in the debug logs). (This used to be commit 046c2087a11b9ce7a02aece34ffb129ce0d66b08)
* make installclientlib depend on the shared-linked or statically-linked versionJelmer Vernooij2003-04-071-1/+1
| | | | | of libsmbclient, depending on what is possible - pointed out by Paul Green (This used to be commit 69e37469c4de6c3716ebb65e477009b9f4da54ea)
* Don't make installclientlib depend on the shared-linked version of ↵Jelmer Vernooij2003-04-071-1/+1
| | | | | | libsmbclient - we need it to work on other platforms as well (This used to be commit 77b1589188ba27b107f11232b7b7df4dea364948)
* Fix build of static libsmbclientJelmer Vernooij2003-04-071-2/+2
| | | | (This used to be commit 8f2975cc94c766b184bbbca276d5a05801dc835a)
* Only warn about short packets if we are already 'doing signing'.Andrew Bartlett2003-04-071-1/+1
| | | | | Andrew Bartlett (This used to be commit 9656b8709128f24dd63094d504a6646f99933c57)
* Create a pidfile, even when running in interactive mode.Tim Potter2003-04-071-3/+2
| | | | (This used to be commit 1d7400e679df136f03daf79788ea998c5a787f89)
* privilaged -> privilegedTim Potter2003-04-075-10/+10
| | | | | (This changes the location of the winbindd privileged pipe) (This used to be commit f111f10076c7797e5fd39edcc0aad7d860bb5ac5)
* Remove duplicate "tallocdump" message from tdb messaging system. TheTim Potter2003-04-076-90/+7
| | | | | | | same functionality exists as "pool-usage". Move initialisation of this and dmalloc messages inside message_init(). (This used to be commit af6ecafcbbf65dbedc49b3a86da39ce608bdadac)
* Restore previous behaviour to update on pdb_unix (auto-upgrade to new account)Andrew Bartlett2003-04-071-0/+1
| | | | (This used to be commit 0509cbc59174354b7c57206a07f7bd222cc87db4)
* Fix the handling of smb.conf in libsmbclient.Richard Sharpe2003-04-061-6/+9
| | | | | | | The right thing to do is to try for the user's local one in ~/.smbc/smb.conf, and if that fails, try the one in dyn_CONFIGFILE, and if that fails, keep going with the defaults but log a message. (This used to be commit 15fa48d19d178cf8bf214ea02f6c7a4c38890f71)
* fix commitSimo Sorce2003-04-062-3/+3
| | | | (This used to be commit ad1a2ab0d6330a0b0fbce7b30ec5f6f502133921)
* Clean up error messages on cli pipe disconnection, including adding the messageAndrew Bartlett2003-04-061-4/+8
| | | | | | | for broken-due-to-bad-sig. Andrew Bartlett (This used to be commit b010b6c2dc400a97eb2ad038cd1fdb34bbde2ef0)
* Fix some mixture of FLAG_GLOBAL|FLAG_SHARE in synonymsAlexander Bokovoy2003-04-061-3/+3
| | | | (This used to be commit e46177acecef375aaea35704a513d9e7f8bf04a8)
* Fix the interface of pull_ucs2_charcnv() to take a (char **) arg, not a ↵Andrew Bartlett2003-04-061-2/+2
| | | | | | (void **) (This used to be commit dc04b732baa0848e391baf7f148218a10e0af032)
* SMB signing updates - this gets NTLMSSP signing workin to the point where IAndrew Bartlett2003-04-064-16/+39
| | | | | | | | | | | | | | | | | | | just need to get the verifiction code working - we get back a signiture from the server, and just can't verify it yet. This also brings the short-packet checks into common code, and breaks the connection if the server sends a signed reply, on an established connection, that fails the test. This breaks our read/write code at the moment, as we need to keep a list of outstanding packets. (signing is not enabled by default, unless the server demands it) Not for 3.0 till I fix the outstanding packet list. Andrew Barlett (This used to be commit 808d1fcf20153970d587cb631a08607beb09703a)
* Fix memory leak of the key.Andrew Bartlett2003-04-061-0/+1
| | | | (This used to be commit 9daf41c41f901b46d6016c6ec63773d0b7cec617)
* Don't bail if we have a badly formed record, just move on to the next one.Andrew Bartlett2003-04-061-1/+1
| | | | (This used to be commit febd966b10b23238c93444256b8ad30b50b20ef8)
* strequal() returns True for equal, not an intAndrew Tridgell2003-04-061-2/+4
| | | | (This used to be commit b96590ad092e32259ce24a20a6a8a30d98dfae7d)
* don't rely on realloc() working on NULLAndrew Tridgell2003-04-061-3/+3
| | | | (This used to be commit bd00355c1d5ca4ce77fa28c53ea46834365f22d7)
* If the string does not convert back, print the buggy result.Andrew Bartlett2003-04-061-3/+10
| | | | (This used to be commit 98f76325542c0ab2e0bbcf082a15c6f8db27e37c)
* Fix bigballofmud.so, and add a test to show a bug I'm having with push_ucs2.Andrew Bartlett2003-04-062-1/+44
| | | | | Andrew Bartlett (This used to be commit a60fd29b43537935500f40a32fec553f2b52c0d3)
* This commit make winbindd copy winbindd_idmap.tdb into idmap.tdb on theSimo Sorce2003-04-064-156/+42
| | | | | | | | | | | | | | | first run if idmap.tdb is not found, and then eventually convert it to the new format. This is done to unify winbind and idmap databases and to make a backup of winbindd_idmap.tdb in case you want to downgrade (of course it will not be updated). This is needed because idmap.tdb contains also local mappings, not only foreign domains mappings. Added some other fixes/improvements Simo. (This used to be commit cf17261519fd8775500f9b9d6caa2bc462e04633)
* Make autogen.sh more portable by having it work on both Linux and FreeBSDRichard Sharpe2003-04-061-2/+2
| | | | | under sh and bash. (This used to be commit 4070ff1c6907c0cc3a86db735e7df25352dfb625)
* Fix building on platforms without ldapJelmer Vernooij2003-04-062-3/+5
| | | | (This used to be commit 3f78ea7d06ae911f97c0a1a451e67fe00547e873)
* Fix debug handling in libsmbclient.c.Richard Sharpe2003-04-052-6/+6
| | | | | | Also, PLEASE, PLEASE, PLEASE, do not include bashism and Cisms in shell scripts. (This used to be commit 7f6367aac8c5440e1d4e97b26571b205140488ae)