summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Make a couple more of the warnings also be C commentsAndrew Bartlett2002-01-031-2/+2
| | | | (This used to be commit 8f343beae7455141ce6a5e27e46ed2970aed8e7f)
* A few changes to always output the erorr mapping even when the error wasAndrew Bartlett2002-01-031-27/+34
| | | | | 'squashed' or the session setup succeeded. (How the latter occurs I don't know). (This used to be commit d879d2ffffc47ce161afb3d96bc5c4b92de662c3)
* Workaround some 'smarts' in Win2k.Andrew Bartlett2002-01-031-0/+20
| | | | | | Win2k kills off connections that have issued a negprot but havn't yet issued a session setup when a second connection appears from the same host. (This used to be commit d47e61eb468218cae631e78edbd5d02982c78ab0)
* Re-add bail on failure.Andrew Bartlett2002-01-031-2/+8
| | | | (This used to be commit da9444d98f212af8f1b1e1df191adf3c31d50f6d)
* Fix talloc msg registrationMartin Pool2002-01-031-1/+1
| | | | (This used to be commit 9a473ecf96fca35d146756c0c313b156aba8d9d9)
* Put a name on lp_talloc poolMartin Pool2002-01-031-1/+1
| | | | (This used to be commit 472121749460a73f684bdbd02b828e89fad101af)
* Make talloctort call talloc_describe_all before exitingMartin Pool2002-01-031-0/+2
| | | | (This used to be commit 4877501da92762d233e5e4f24d1cb2bdd1eab8ae)
* Cope nicely with pools with no name.Martin Pool2002-01-031-1/+10
| | | | (This used to be commit 86abefc17260387b6b68c71ad5587ef0212162c0)
* fixed ERRMAPEXTRACT torture to work with win2kAndrew Tridgell2002-01-031-11/+5
| | | | (This used to be commit 27143900e76033026ecd5a7b4525c0150f3a535d)
* smbd children should also register for POOL_USAGEMartin Pool2002-01-031-0/+1
| | | | (This used to be commit b46d874f4736493bdc4244ec6cdf95e77347e7d5)
* Cleanup format.Martin Pool2002-01-031-1/+1
| | | | (This used to be commit a9b9ae47e1a11492f036b308c408c6a239a690f6)
* talloc accounting now includes number of chunks and bytes allocated.Martin Pool2002-01-031-9/+42
| | | | (This used to be commit cd25d01e42e7874bc93f6ca336c5b2cde453bb52)
* Send back talloc allocation information when POOL_USAGE is received.Martin Pool2002-01-031-2/+8
| | | | (This used to be commit 7cb8e95f9332d4c278d2aac5416f963639609d5a)
* Add talloc_asprintf_append, which grows an existing string buffer toMartin Pool2002-01-032-4/+82
| | | | | | contain new print-formatted information. (Also talloc_vasprintf_append.) Idea borrowed from glib. (This used to be commit 53723e874885936dd67483ebf46601fc73489d17)
* smbd now sends a reply to MSG_REQ_POOL_USAGE, though it's prettyMartin Pool2002-01-032-2/+7
| | | | | boring so far. (This used to be commit 9b217dce7fe89d1e36a91d7d011c2a9fe185e0d3)
* smbd should register to receive MSG_REQ_POOL_USAGE. Response shouldMartin Pool2002-01-034-2/+47
| | | | | be information about memory usage, but this is not done yet. (This used to be commit 830a126a442bdde28fc42e23e7260c344b6534b9)
* Fixed crash bug in display_print_info_2()Tim Potter2002-01-031-65/+87
| | | | (This used to be commit b70f870cd98e30d0ce74d322391cc79d65c5f838)
* Ignore dmalloc.log.Martin Pool2002-01-031-2/+3
| | | | (This used to be commit cfa89169e0bbc9cbd7448c96139ecaf459d0af81)
* If we receive a message that is not handled then emit a gentle warningMartin Pool2002-01-031-0/+8
| | | | | to the log. (This used to be commit 53dd8b45397f5de7660594b9287341f8f4c91c43)
* debug output on receipt of message.Martin Pool2002-01-031-0/+2
| | | | (This used to be commit 6bd5b7ce8ec54faefcf129fcc98cc4440bb355d6)
* Oops, rerun autoconf after last change.Martin Pool2002-01-031-0/+8
| | | | (This used to be commit 73743c2ec9da239f5d1340b68e92bdeb00cee97d)
* Welcome to preprocessor hell. Had to put a #ifndef around SAFE_FREE toTim Potter2002-01-031-0/+3
| | | | | | | | stop smb_macros.h and tdb.h from fighting with each other. I tried to rearrange the #include file order but that breaks other stuff. Aargh! (This used to be commit aae8cc6e450a6a0b33045ed1e6d49f8eebeb48b2)
* Add instructions on using dmalloc.Martin Pool2002-01-031-0/+8
| | | | (This used to be commit ee6d33a8db2afc43c8784f2e43572ae8959126e5)
* Fixed crash bug in display_print_info_1()Tim Potter2002-01-031-3/+13
| | | | (This used to be commit d1564fbf1f4950c12516470d4566efeca3ad79e5)
* Initialise result on success in cli_spoolss_enum_printers() so we don't getTim Potter2002-01-031-0/+2
| | | | | stuck in an infinite loop. (This used to be commit fe1fb6589a0a4b4cff7a0ee0267f6e09e10e2a85)
* The werror<->nt status code map has changed and has broken all the spoolssTim Potter2002-01-031-7/+7
| | | | | | | | | commands in rpcclient. Replacing ERROR_INSUFFICIENT_BUFFER with NT_STATUS_BUFFER_TOO_SMALL fixes it. Yay! I always thought the caller (i.e cmd_spoolss.c) should take care of the whole requested/needed buffer size thingy though... (This used to be commit 6c950db05a2772f11b20cc13c65a123ea8b878c2)
* Removed unused #defineTim Potter2002-01-031-1/+0
| | | | (This used to be commit ab1bd916cf59e12366d9005f6ce1cf6521ff02be)
* debug statement fixups.Jeremy Allison2002-01-024-52/+43
| | | | | | Merge SAFE_FREE fix in tdb from 2.2, and IRIX fix. Jeremy. (This used to be commit eb6607466565bcd5b3800492d0bc1ae8a44da4f6)
* removed stuff I wasn't usingGerald Carter2002-01-021-49/+0
| | | | (This used to be commit 27ffce157a655e267f225126f586847e5a0b8614)
* sync up ldap defaults with 2.2Gerald Carter2002-01-021-2/+3
| | | | (This used to be commit 59174310d419aa835031c7a318d85fe25ba28227)
* ooops./ forgot oneGerald Carter2002-01-021-1/+1
| | | | (This used to be commit 501f3f3a8fb5ea27155f8c2fe266f1f659d7d22d)
* fixing compile errorGerald Carter2002-01-021-4/+4
| | | | (This used to be commit 999a2f5c847c6a4336df60807e2fb546a2a4894f)
* We should be SHLD not LINK when creating shared libraries.Jeremy Allison2002-01-022-9/+9
| | | | | | Tidyup in passdb.c Jeremy. (This used to be commit 676eea502a1bb2114a6e8055ecaf97ecab2e3a91)
* We go to a lot of effort to avoid strcpy() in Samba, but its not much use ifAndrew Bartlett2002-01-021-12/+12
| | | | | | | | | | | | | | | | people start doing using strlen(src) in strncpy() :-) This occured when the talloc based passdb was reverted in favor of a pstring based one. In the talloc version this was fine, becouse the buffer was strlen(src) bytes long. This no longer applies... This doesn't seem to have broken anything, but I'm chasing up an oddity with NT password changing from the last merge. Test & MERGE for 2.2.3 Andrew Bartlett (This used to be commit 673ece2841e8b60966a17ece3591f9f202807332)
* Add prs_dump_before to dump everything from the start of the prsMartin Pool2002-01-022-5/+24
| | | | | | buffer up to the current position, and use this to dump pipe buffers just before parsing. (This used to be commit 92a3ab274e6cf09a8ba39b91f8bbacba6de40b37)
* Actually enforce the passdb API.Andrew Bartlett2002-01-029-266/+344
| | | | | | | | | | | | | | | | | | | | | | | | | | | Thou shalt not reference SAM_ACCOUNT members directly - always use pdb_get/pdb_set. This is achived by making the whole of SAM_ACCOUNT have a .private member, where the real members live. This caught a pile of examples, and these have beeen fixed. The pdb_get..() functions are 'const' (have been for some time) and this required a few small changes to constify other functions. I've also added some debugs to the pdb get and set, they can be removed if requested. I've rewritten the copy_id2x_to_sam_pass() functions to use the new passdb interface, but I need the flags info to do it properly. The pdb_free_sam() funciton now blanks out the LM and NT hashes, and as such I have removed many extra 'samr_clear_sam_passwd(smbpass)' calls as a result. Finally, any and all testing is always appriciated - but the basics seem to work. Andrew Bartlett (This used to be commit d3dd28f6c443187b8d820d5a39c7c5b3be2fa95c)
* Make user enumeration work for w2k and win9x.Jeremy Allison2002-01-022-72/+89
| | | | | | This means different return sizes depending on client bugs. This sucks :-(. Jeremy. (This used to be commit f6592628eb526c487069bb3fcd809aca930e668e)
* Another touch of 'const'Andrew Bartlett2002-01-021-1/+1
| | | | (This used to be commit 3d812aacff98eec62c748cb89109a2e58806d92d)
* Doc.Martin Pool2002-01-021-2/+1
| | | | (This used to be commit b354163834e0f2da7d3caacfe8d2ac6e2a6949e8)
* Also capture received dataMartin Pool2002-01-021-0/+5
| | | | (This used to be commit 93fadcd1118b390605d2504bee63a1e8b6373ac5)
* struct cli_state remembers the pipe name that it's talking to, if any,Martin Pool2002-01-021-3/+22
| | | | | | | | so that we can print it in later debug messages. Call prs_dump to dump out requests sent by the client at sufficiently high debug levels. (This used to be commit 9973b22b34dc2a88a20b821d4e69f39d2a6aa6a3)
* struct cli_state remembers the pipe name that it's talking to, if any,Martin Pool2002-01-021-0/+3
| | | | | so that we can print it in later debug messages. (This used to be commit 37ae84f782e1de6fcea92acb2189683cdf8e7e92)
* Minor update to make the output 'real C'. (The output is intended to be a CAndrew Bartlett2002-01-021-3/+8
| | | | | | | format table for inclusion back into Samba). Andrew Bartlett (This used to be commit 95abb2473bb4f93df163a0e8af79d5292e1389b3)
* Removed reference to rpc_client/cli_netlogon.o from dependencies forTim Potter2002-01-021-1/+1
| | | | | samsync. The libsmb version should do fine. (This used to be commit 001fe3481f26e27964b3d60c067524b45f085304)
* the pdbedit tool manpageSimo Sorce2002-01-021-0/+291
| | | | (This used to be commit 4aecb650e1ece234fb7359270deb74fe1c1a4a16)
* try to handle broken const in headers on cray unicosAndrew Tridgell2002-01-012-752/+768
| | | | (This used to be commit 8143052e6917d4ae774192ed463ea7359cf0a5fb)
* This brings the NT->DOS error mapping into better line with what NT does.Andrew Bartlett2002-01-011-2/+2
| | | | | | | | I'll post the changes to the actual map to the list for comment, but this fixes the 'unknown' case. Andrew Bartlett (This used to be commit 024843a2cedb0b9f06a3351c5838caea372b6c5c)
* Add a function to convert 'NT_STATUS...' strings back into their actual errorAndrew Bartlett2002-01-011-0/+16
| | | | | | | code. Andrew Bartlett (This used to be commit f0089b089b319009576bb39a076397bb44aff628)
* Allow usernames in the form of 'NT_STATUS_....' to map to that as the errorAndrew Bartlett2002-01-011-0/+6
| | | | | | | | | when using the 'name_to_ntstatus' auth module. This could be useful in testing. Andrew Bartlett (This used to be commit 5cdc67d0bda8ef41305cae9c5be70d11593ffdd8)
* Now that winbind doesn't rely on this, we may as well remove it...Andrew Bartlett2002-01-011-108/+0
| | | | | Andrew Bartlett (This used to be commit 6673fdda3cb6b90189d8f82274fdffa89f68101b)