summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Don't reference tallocated memory that has already been disposed of. TheTim Potter2001-10-293-11/+26
| | | | | cli_samr_query_userinfo function used to do this. (This used to be commit da2c167660ec12360354f96dc672d935f58dd9c0)
* Fixed confusing debug message - it was always printing uid 0 instead of theTim Potter2001-10-291-1/+1
| | | | | correct uid. (This used to be commit ad30a35ebc04f6a56c3ffb28bfb793557cf1fdf7)
* fix a logic bug on max size of a returned string,Simo Sorce2001-10-281-3/+9
| | | | | this fixes also the bug with file renaming. (This used to be commit 5246d7609c3aff658fcd08a1f1c1bb6e11509e35)
* added de.msg from Andreas MoroderMotonobu Takahashi2001-10-281-0/+1707
| | | | (This used to be commit bc909797efcb9b13480d1a77e1429473bb107ed4)
* Fix up the Makefile for now (thanks herb).Andrew Bartlett2001-10-271-2/+2
| | | | | | | | I understand that Vance is reworking the build_options stuff, so maybe we can have better way of regenerating this in future. Andrew Bartlett (This used to be commit a228e9b39f0a5642d5acaba90a92ba0b29adf689)
* smbd/notify_hash.c: Merged Herb's fix.Jeremy Allison2001-10-272-3/+4
| | | | | | lib/debug.c: Fix for potential null pointer access. Jeremy. (This used to be commit 5a4d22dd66ab782f6161aa5a4162c0e7f1d811fb)
* Raise simultaneous open pipes from 64 to 1024 for large print serverJeremy Allison2001-10-271-1/+1
| | | | | | environments. Jeremy. (This used to be commit e5f8147d02b57198f684c6686dfa497c6732ff44)
* Added some connection checking code. Doesn't work yet though.Tim Potter2001-10-271-10/+43
| | | | (This used to be commit 4f4dace5772780cf4eedc0ebca1c60d04171eb74)
* A few spelling fixes from Vance. <vance@digital-host.net>Andrew Bartlett2001-10-261-8/+8
| | | | | Thanks! (This used to be commit 5fda15463a63018d917fbd7d6d9dd1fb0b2558cf)
* samba-bugs@samba.org -> samba@samba.orgAndrew Bartlett2001-10-261-1/+1
| | | | | The rest of this is still broken however... (This used to be commit 6cce6350caf034bdf6e5b6417e762bebc3dd97c8)
* Restore the intended behaviour for .headers.stampAndrew Bartlett2001-10-261-1/+1
| | | | | | | | We don't want a 'make headers' (aka make proto) to force a rebuild of the entire tree. Andrew Bartlett (This used to be commit 8c0cb50387cbbcca89d12cefae40a6a02d147ea4)
* Fixed compile warning.Tim Potter2001-10-261-1/+1
| | | | (This used to be commit 320c21b7a9e0a914b8a9523775df8895cb41256f)
* Added || -> && fix from "Orwig, Paul" <PORWIG@PacificLife.com>.Jeremy Allison2001-10-241-2/+2
| | | | | Jeremy. (This used to be commit 57b8e6d742addd9fa90da918ec4343d47562f0b7)
* Remove xstrdup since it was added to lib/util.c. Caused compile failureJim McDonough2001-10-241-13/+0
| | | | (This used to be commit 43c384fa7854a9592ce5e5b67cb650c91ea09a76)
* Updated copyright notice.Tim Potter2001-10-241-1/+1
| | | | (This used to be commit 86de168ea948b48c47d88b8f1928437de7c33873)
* Renamed global_vfs_ops to default_vfs_ops and made static.Tim Potter2001-10-241-12/+15
| | | | | | | Make a copy of the default ops structure rather than following a pointer. This fixes the audit VFS example module! (This used to be commit 91ab6f75d9e6820a13fe3034a5f100ae170ad164)
* Removed unused function.Tim Potter2001-10-241-68/+0
| | | | (This used to be commit ef06de2a1ca434ab658940146b5d6c16bf580bb3)
* Made default vfs ops static so we can use this symbol in actual modules.Tim Potter2001-10-241-1/+1
| | | | (This used to be commit 398ced6eef7e52441ddc59fef70e4a50a96a73b7)
* Don't get stuck in an infinite loop in vfs_connect.Tim Potter2001-10-231-1/+1
| | | | (This used to be commit 69275e4f0f502f07ceb37f274d01450d639ba23f)
* more compiler warningsHerb Lewis2001-10-238-10/+10
| | | | (This used to be commit 12c10e876ea528fdf33e8ecfe42ab0ebb346b143)
* .headers.stamp not getting touched if file already existed.Herb Lewis2001-10-231-1/+1
| | | | | | | Not sure what the original intent was with the [ -f $@ ] test but this prevented the touch from happening. Could whoever originally added this target check this out? (This used to be commit 813490855339cffa31c8734ecd362eba7585bda2)
* get rid of compiler warnings (casts and delete unused variables)Herb Lewis2001-10-238-20/+17
| | | | (This used to be commit 51cb4411df61d1caec9d84809b1a53a6a632f808)
* IRIX compiler dies not like casts in macro argsHerb Lewis2001-10-231-1/+1
| | | | (This used to be commit 1b3123df48ca586b3d9c86a152354690836f6beb)
* Remove setbuffer which caused build errorsJim McDonough2001-10-231-2/+0
| | | | (This used to be commit 5a482350a74e255b8db1ea3c8e76654d6f089f51)
* get rid of compiler warningsHerb Lewis2001-10-232-2/+2
| | | | (This used to be commit 3fed17c537985177d8f54d03b71fda04ff930d5d)
* Fix popt library checkingJim McDonough2001-10-232-13/+7
| | | | (This used to be commit 2cd33e88eb5ed88da90ddfd50a1ec96a2053479a)
* Replace getopt_long with popt for parsing commandline optionsJim McDonough2001-10-231-136/+91
| | | | (This used to be commit 0be7bf421be5ccff295a0d36331e915fce31796f)
* Add popt for parsing commandline optionsJim McDonough2001-10-2319-745/+2608
| | | | (This used to be commit df34e11d84a6fe89dc6654eb10de0a49383e1dea)
* ops, some testing code in compat function let only mangled name come back.Simo Sorce2001-10-221-12/+12
| | | | (This used to be commit e48eb7b572de10481e928fb55243f47e8a3aa446)
* server support for RAP session list functionJim McDonough2001-10-222-0/+118
| | | | (This used to be commit d42c28fbadf577a23fb8c1da9e1c64a2f34fe133)
* lets try the new mangling codeSimo Sorce2001-10-222-7/+44
| | | | | | | | all the calls go through a compatibility interface will change that soon a new mangle.tdb file will be set in the lock directory it contains a static mapping longname<->manglename (This used to be commit 1ffacd2068a896d36a9e56b6e28c63e2f7e98762)
* a quick fix to get rpcclient working again. This just disablesAndrew Tridgell2001-10-224-2/+10
| | | | | | | | NTLMSSP in cli_establish_connection() What we really need to do is kill off the pwd_cache code. It is horrible, and assumes the challenge comes in the negprot reply. (This used to be commit 3f919b4360b3bfcc133f7d88bc5177e9d93f2db2)
* samr querydispinfo can change level, start index and max entries.Jean-François Micouleau2001-10-221-10/+33
| | | | | | | added level 4 decoding. J.F. (This used to be commit 0573caa91bdff361e3e864d3fd39d450e3738580)
* allow the samr commands to work back and the help too ;-)Jean-François Micouleau2001-10-222-46/+24
| | | | | J.F. (This used to be commit 0157fdc8a291ba9872757fb6cf5e16e98058a034)
* - fixed link order of krb5 libsAndrew Tridgell2001-10-225-134/+97
| | | | | - accept a wide range of principal names in session setup (This used to be commit 672df66296f540b606aa43effab5f021b8978e4b)
* Fix for @ in pathname from Kian Win.Jeremy Allison2001-10-221-1/+5
| | | | | Jeremy. (This used to be commit 070fd5180fef921efb363ff24f04a298254f108b)
* Renamed inbuilt xstrdup to smb_xstrdup.Jeremy Allison2001-10-221-5/+5
| | | | | Jeremy. (This used to be commit cf99f9361370c521f28dcced008cbfec9fc38de5)
* Added xstrdup, removed static version from smbpasswd.cJeremy Allison2001-10-222-16/+14
| | | | | Jeremy. (This used to be commit d01a9e5974d80ee8be2f7a20aeaae5826325d035)
* Added xmalloc - calls smb_panic on zero size or malloc fail.Jeremy Allison2001-10-221-1/+27
| | | | | | | | Added xmemdup - calls xmalloc. Made data_blob() call xmemdup. Defensive programming (I still hate the no error checking... :-). Jeremy. (This used to be commit 2cc262278f9d4892cf2485d7a73d88bc0e7559a8)
* Ok, I know it's a language thing and it shouldn't matter.... but a kerberosJeremy Allison2001-10-216-31/+32
| | | | | | name is a "principal", not a principle. English majors will complain :-). Jeremy. (This used to be commit b668d7d656cdd066820fb8044f24bcd4fda29524)
* Fix for fussy Solaris compiler.Tim Potter2001-10-211-3/+1
| | | | (This used to be commit d50005d4c118ae32d1ddbdee4feec479db4682b9)
* patch for neater output() function from vanceAndrew Tridgell2001-10-211-351/+193
| | | | (This used to be commit 2472ecf7fc510115489baf0a888b511446b9c1fd)
* Fix for compilation on non-krb5 systemsAndrew Bartlett2001-10-211-1/+1
| | | | (This used to be commit 44bdb8b12b3d6a7bf3148c2ac651a79f10776db6)
* change smbd to use HOST/hostname principle form until I work out howAndrew Tridgell2001-10-211-22/+18
| | | | | | | to use the other form in netjoin smb_wct is a char, not a word (This used to be commit 3dbb48b188980cf6c869dc762e3039dd375bf392)
* change smbd to use HOST/hostname principle form until I work out howAndrew Tridgell2001-10-211-1/+3
| | | | | to use the other form in netjoin (This used to be commit 58cfa13d6576bd34ceed7ba6ad52bced96e50544)
* made smbclient cope better with arbitrary principle formsAndrew Tridgell2001-10-213-21/+10
| | | | (This used to be commit d1341d74b7aa5f6b3f72e5409b245f87f1ad670b)
* support both old and new kerberos OIDsAndrew Tridgell2001-10-212-2/+3
| | | | (This used to be commit eac164c7e650a8f855e7b662b126a5dfc5516927)
* fixed the spnego detection code in session setupAndrew Tridgell2001-10-211-2/+8
| | | | | this gets share mode working again (This used to be commit 8286e5307ca47f14d27ee0d9bc9700d52151d56a)
* Converted a bunch of 0x85 constants to SMBkeepalive.Tim Potter2001-10-204-8/+9
| | | | (This used to be commit b16a15a13ed7d267c6366abaeeb3ccafa5776f5e)
* Move from timestamp to gen count file id's for finding oplocked filesJeremy Allison2001-10-208-1020/+1026
| | | | | | in a tdb. Jeremy. (This used to be commit 058ae6b58f61ef46013dd076af3a84de5fbaaab1)