summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
1998-10-21Fixed mainly signed/unsigned issues found by SGI cc in -fullwarn mode.Jeremy Allison11-34/+58
smbd/chgpasswd.c: Fixed (my) stupid bug where I was returning stack based variables. Doh ! smbd/trans2.c: Allows SETFILEINFO as well as QFILEINFO on directory handles. Jeremy. (This used to be commit 0b44d27d0b5cc3948a6c2d78370ccddf1a84cd80)
1998-10-21oops!Luke Leighton2-11/+11
(This used to be commit 500e5536bee8ea8e58d5991bfab2cff923068926)
1998-10-21signed / unsigned issuesLuke Leighton4-4/+4
(This used to be commit bd2fc6bb85739cb8e7ed2254e2a553486daed054)
1998-10-21fixing smbd encrypted rpcs (data lens, alloc hints, sequence nums argh).Luke Leighton6-16/+26
put unicode strings after SAMLOGON query regardless of whether it's an NT mailslot or a non-NT mailslot, after having observed this behaviour out of NT machines. (This used to be commit c101113ec20ed0ba633e78e4ee45596cdccaf1b5)
1998-10-21at the interop Isaac (at least I _think_ it was Isaac) said that if aAndrew Tridgell2-1/+18
MS client doesn't respond to a oplock break request then we might try resending the request. This morning Sues Win95 machine had this problem (thus forcing me to do something about it!). When starting winword her box refused to answer an oplock break request. I have added code to resend the oplock break request up to 3 times at 10 second intervals before killing the socket. of course, as soon as I did this her box started to behave again so I haven't been able to tell if this fix actually works, but it can't be worse than dropping the socket immediately. (This used to be commit a1c4d8351b9171416693e6d7a9045bdce9217edb)
1998-10-20signed / unsigned warnings (found by herb).Luke Leighton4-16/+16
how do i switch on these warnings in gcc????? (This used to be commit 39db385a0c47c11adb6bf3bac89c4bb76f675049)
1998-10-20dce/rpc. bug-fix in ipc.c (introduced today :)Luke Leighton3-29/+89
(This used to be commit 48ff3e2429964404c8bf33ef625791147913a3c0)
1998-10-20Fixed bug found by John Blair where trim_string wasn'tJeremy Allison3-193/+304
correctly trimming trailing multibyte code page strings. Jeremy. (This used to be commit dbdbce29f56d03f6abf1ee3d96ca2032e688dcbc)
1998-10-20some quite important bug-fixes i missed because i transferred the wrongLuke Leighton8-49/+47
smb.tgz file from my portable. particularly the call to mem_data followed by a realloc of that data in cli_pipe.c's rpc_read() function. smbd responses now use p->rdata_i which is a faked-up pointer into p->rdata's response data. rdata can be very long; rdata_i is limited to point to no more than max_tsize - 0x18 in length. this will make it an almost trivial task to add the encrypted rpc headers after rdata_i, and mem_buf_copy will cope admirably with rhdr chained to rdata_i chained to auth_verifier etc etc... (This used to be commit 05a297e3a98c14360782af4ad0d851638fb5da9a)
1998-10-20calls to prs_grow() on array structures so that data construction doesn'tLuke Leighton1-3/+18
over-run buffers (This used to be commit 06cc6eaa50fa4b673d527e91740f9d2d2b16d367)
1998-10-20oops, I ot the return type of putenv() wrongAndrew Tridgell1-2/+3
(This used to be commit 5b7b24d3f9a74b241f7e767de4a2bae601adf88a)
1998-10-20use putenv() more portablyAndrew Tridgell1-1/+7
(This used to be commit dc08f1a5c92e86c41dc03f6a4d10d5779f3d9c34)
1998-10-20fixed a connection bug in torture testAndrew Tridgell1-11/+66
(This used to be commit 2b892130dfc1938e93e69e490a8a9e9ed57a1971)
1998-10-20removed setenv(), replaced with smbw_setenv()Andrew Tridgell6-26/+29
(This used to be commit 72bce217ef474f056d8f6675667ec78d1772ff37)
1998-10-20new prorotypesAndrew Tridgell1-0/+1
(This used to be commit facd8d74e0cd0998ca5347ac5be14a6027460699)
1998-10-20fixes for solarisAndrew Tridgell1-2/+4
(This used to be commit 235a8463b56107d97ee5523eed41967e8ccf27b6)
1998-10-20smbd/nttrans.c smbd/trans2.c: First fixes for NT5.0beta2. That redirectorJeremy Allison5-17/+79
has some *horrible* bugs ! smbwrapper/shared.c smbwrapper/smbsh.c smbwrapper/smbw.c: Fixed gcc warnings. Jeremy. (This used to be commit 76448d1d82a78520953c662afee0886122ce134b)
1998-10-20add -Bshareable for *bsd*Andrew Tridgell1-0/+3
(This used to be commit c511a619750152db03897ea682713bbc98f71c6b)
1998-10-20removed my badly-done attempt at handling compilers that don't handleAndrew Tridgell1-9/+3
-c and -o at the same time. my shell script code wasn't portable (This used to be commit 759c72822b9b1e8c50b378378f3a45f1e7604ade)
1998-10-19oopsLuke Leighton1-2/+2
(This used to be commit 7f8dfedfc0933713ab7d6de0763f8776e5805e27)
1998-10-19output password change messages instead of debug message.Luke Leighton1-2/+2
(This used to be commit b9e728a97be323e9221889a63ffa02cff5c99403)
1998-10-19- dce/rpc codeLuke Leighton14-214/+431
- removed debug info in struni2 and unistr2 (security risk) - rpc_pipe function was getting pointer to data then calling realloc *dur* - password check function, the start of "credential checking", user, wks, domain, pass as the credentials (not just user,pass which is incorrect in a domain context) - cli_write needs to return ssize_t not size_t, because total can be -1 if the write fails. - fixed signed / unsigned warnings (how come i don't get those any more when i compile with gcc???) - nt password change added in smbd. yes, jeremy, i verified that the SMBtrans2 version still works. (This used to be commit fcfb40d2b0fc565ee4f66b3a3761c246366a2ef3)
1998-10-19added command line options to smbshAndrew Tridgell4-30/+72
(This used to be commit 9b249c075e53e6cf75399d60a6371648c03104fa)
1998-10-19improved session reestablishmentAndrew Tridgell1-36/+82
(This used to be commit 5f96328d32e76785474ffd5cd73f8ddefc46d4f5)
1998-10-19prototype new functionsAndrew Tridgell1-0/+6
(This used to be commit ae6e3d8f3820ee09988948ec0c1fa2214acd9b62)
1998-10-19return the resolved IP on a cli_connect() call so it can be cachedAndrew Tridgell1-0/+1
(This used to be commit 4e3f8ef41b8de25dec4c01d5532dca1b567be55a)
1998-10-19removed an incorrect commentAndrew Tridgell1-4/+0
(This used to be commit 5abdb70e2a5cda2df444dfe5a9cdcb751be75ca8)
1998-10-19- don't use env variables for passwords and usernames (yeah!)Andrew Tridgell4-23/+242
- added a shared variable area based on a unlinked open file, and implement a general get/set interface to it - cache hostname lookups and master ip lookups in shared variable area (This used to be commit 279cbe69efd75450113d2da0da5e67b29f3702b1)
1998-10-19- added smbrapper/shared.oAndrew Tridgell1-5/+10
- added suport for C compilers that don't handle -c and -o at once (This used to be commit f1672d055716f4b701e22801cbf5cf5573081685)
1998-10-18Fixed sys_lseek and seek_file calls so all returnsJeremy Allison6-193/+315
are *checked* :-). Jeremy. (This used to be commit b8b781191dd7d28944d87eec5fa0fbef798e289b)
1998-10-18redid proto.hAndrew Tridgell1-1/+1
(This used to be commit 20880966aafb2dbcdfbf979505a2d64a269dd9a8)
1998-10-18check for lp_nt_pipe_support() in open callsAndrew Tridgell2-2/+2
(This used to be commit 44d901b3e040a520c4ad9089e68c566c78acacca)
1998-10-18add an option to enable/disable nt pipesAndrew Tridgell1-0/+4
(This used to be commit c161b2f850f124ac5f24968e7865a7d0eb68e23e)
1998-10-17Small tidyups for gcc in 'preen' mode....Jeremy Allison14-11/+25
Jeremy. (This used to be commit 60dc1a4a00a22088d33369588b0d5eb292cf084a)
1998-10-17Added man page for nmblookup(1)Eloy Paris1-0/+126
(This used to be commit 69c7b8e2af225f3711d601a136ad3dbc9aaa476e)
1998-10-16oops.Luke Leighton1-1/+1
(This used to be commit fc1b7b9e75b029ffa93263766fe297d043c6d1df)
1998-10-16dce/rpcLuke Leighton8-9/+134
(This used to be commit 29434f496c18e816d864060d68f357aea6ef5de8)
1998-10-16added maxfid testAndrew Tridgell1-11/+66
(This used to be commit 710027a88a62565fbbe9eb5787e924d019906841)
1998-10-16changed some debug levelsAndrew Tridgell2-6/+15
(This used to be commit 121e321a12c5da5cb44ca1baece7e25c3ab7f943)
1998-10-16strtoul removed, strtol used insteadLuke Leighton1-1/+1
(This used to be commit d717d58c115fc5cf687af098100cf5adc0265afc)
1998-10-16strtoul replace with strtolLuke Leighton2-12/+12
(This used to be commit 4ebd2c5140e782ec43d9f7700bd588dfa52a16c7)
1998-10-16!pass -> pass != NULL is wrong: !pass -> pass == NULL is correct. oops.Luke Leighton1-2/+2
(This used to be commit 866e1018180a70ff2ffa39e6a5ce5f187eca2764)
1998-10-16made pass_check_smb() available for dce/rpc use.Luke Leighton6-31/+43
(This used to be commit 95e8a910c5d9ba0ef57669fb1256eaa932e0bb09)
1998-10-16cli_nt_session_open() encrypt arg removedLuke Leighton1-1/+1
(This used to be commit 63def717992695ed4a4933c2605abe26086fb8c7)
1998-10-16setup_groups() - code clarification. no functional change.Luke Leighton1-13/+19
(This used to be commit dae7c5ea9a139552e1722357172fa1ad0c4a7143)
1998-10-16oops.Luke Leighton1-3/+4
(This used to be commit ff9e919b713f077e811b702db6ec20897a11d5a0)
1998-10-16rpc client mods (ntlmssp flags)Luke Leighton10-47/+101
(This used to be commit 16256f86bf451535c7955b8f51a9b88fc33a8e4d)
1998-10-16only do the MAC extensions if we are a NTFS filesystemAndrew Tridgell1-6/+10
(This used to be commit 91d224735d1a4ef26d75d87e3b35d8d156b8998b)
1998-10-16- use large buffers for netshareenumAndrew Tridgell1-19/+30
- handle errmoredata a bit better - fix dev type from tconx for smbw (This used to be commit 2f39409dc1ef012a8a7d315572a489d15df186f7)
1998-10-16use the username GUEST if no other username is availableAndrew Tridgell1-0/+5
(This used to be commit 59d99ad76cb2aa0f24467ed0df12d5ad50abff18)