summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
* Added scripts/convert_smbpasswd to SCRIPTSJeremy Allison1998-11-051-1/+1
| | | | Jeremy.
* Realise this needs to be without the '.sh' ending as we will beJeremy Allison1998-11-051-0/+0
| | | | | installing it in the BIN directory. Jeremy.
* Very simple awk script to convert a 1.9.18 password file into Samba 2.0Jeremy Allison1998-11-051-0/+17
| | | | | password file format. Jeremy.
* Added scripting option (-s) to smbpasswd.Jeremy Allison1998-11-041-10/+73
| | | | Jeremy.
* fix to some of the unicode string handling. there are others pendingLuke Leighton1998-11-031-7/+7
| | | | in non-critical areas.
* Makefile.in configure configure.in include/proto.h smbd/noquotas.c ↵Jeremy Allison1998-11-039-623/+665
| | | | | | | | | | | | smbd/quotas.c: Added quotas patch for autoconf from Dejan Ilic <svedja@lysator.liu.se>. printing/printing.c: Filenames with spaces patch from Allan Bjorklund <allan@umich.edu> utils/nmblookup.c: Fix usage() function. smbd/reply.c: Split out the security=server and security=domain checks into check_server_security() and check_domain_security() to aid the writing of the 'hack' appliance mode invented by John Schimmel. Jeremy.
* memory leak in SAM group code: need these to track it down.Luke Leighton1998-11-022-0/+834
|
* client/client.c: Patch to tidy up file size output.Jeremy Allison1998-11-022-5/+2
| | | | | | nmbd/nmbd.c: Someone (a "yank" no doubt :-) Changed instances of "initialise" to "initialize". Someone get that man an *English* dictionary.... :-) :-). Jeremy.
* removed comment line at end of fileLuke Leighton1998-11-022-3/+4
|
* don't core dump in smbstatus if we can't open the shmem systemAndrew Tridgell1998-10-311-0/+1
|
* took out Lukes change as it breaks domain logons for Win95 clientsAndrew Tridgell1998-10-311-4/+0
| | | | | | | | | | | | | | | | | | (ie. it breaks Sues machine). Luke, your comment was: 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. perhaps you could post the relevant tcpdump or netmon capture so we can see what is going on? I suspect that what you saw isn't exactly what the win95 boxes are generating. Maybe you saw a GETDCxxx instead of a GETDC000 ? Maybe we need a switch based on the GETDC request type? We won't know unless we see sniffs.
* added copyright notice from Patrick PowellAndrew Tridgell1998-10-311-8/+5
|
* Fix suggested by Nicholas.S.Jenkins@cdc.com - connect to theJeremy Allison1998-10-301-2/+7
| | | | | | | password change server as anonymous - you don't need to have logged on as the user to do the password change. Doh ! (Why didn't *I* think of that one.... :-). Jeremy.
* do not print garbage just because someone does not want dependencies :-)Alexandre Oliva1998-10-301-24/+24
|
* looks like someone forgot to commit these...Alexandre Oliva1998-10-293-2/+5
|
* Fixed bug (that I introduced when doing the "delete on close" workJeremy Allison1998-10-291-7/+9
| | | | | | | | that caused NetBench to fail as the wrong error code was being returned from a getatr call. Change was not to set the unix_ERR_class global when you are not returning an error. This is a big of Samba internal folklore that is *important*. Jeremy.
* modify dependency tracking code so that it:Alexandre Oliva1998-10-291-10/+29
| | | | | | | | 1) inserts the pathname of the object file in the dependency file (currently, gcc will only generate the basename) 2) the directory tree within .deps mirrors the source tree, so that we use shorter filenames problem 1 was reported to me by Tom Angert <angert@bellsouth.net>
* Tidied up option processing in smbclient - usage message now actuallyJeremy Allison1998-10-291-123/+132
| | | | | | | | | reflects the real options. Removed '-S' option - couldn't see what this was doing (seemed to have something to do with nt_domain_logon ?). Luke please check if you needed this code (code is only #ifdef'ed out and can be re-instated). Did this to make writing of yodl smbclient man page possible :-). Jeremy.
* some versions of Irix pass the HAVE__ACL test but don't have acl.hHerb Lewis1998-10-291-1/+1
| | | | test for both before including ACL support.
* This should have gone with the last batch.Christopher R. Hertel1998-10-281-4/+3
| | | | | | Again, to compile debug2html, you need to do a 'make debug2html'. Chris -)-----
* I've moved the debugparse module files into the ubiqx directory because IChristopher R. Hertel1998-10-283-15/+445
| | | | | | | | | | | know that 'make proto' will ignore them there. The debugparse.h header file is included in includes.h, and includes.h is included in debugparse.c, so all of the pieces "see" each other. I've compiled and tested this, and it does seem to work. It's the same compromise model I used when adding the ubiqx modules into the system, which is why I put it all into the same directory. Chris -)-----
* Still moving things around. debugparse.h will be removed from the includeChristopher R. Hertel1998-10-283-85/+2
| | | | directory in the next batch. Chris -)-----
* Just moving things around a bit.Christopher R. Hertel1998-10-281-328/+0
| | | | Chris -)-----
* Added clear-out-structure fix for make_unistr2.Jeremy Allison1998-10-281-0/+2
| | | | Jeremy.
* Fixes to allow this to pass SGI compiler in -fullwarn mode (with oneJeremy Allison1998-10-281-9/+9
| | | | | annoying exception I'm still looking at :-). Jeremy.
* Quick fixes to fix the broken tree. Needed for my morning compiles.Jeremy Allison1998-10-285-6/+18
| | | | | | Chris - feel free to fix these things differently if these fixes don't work for you. Jeremy.
* Fix from thwartedefforts@wonky.org (slightly modified) toJeremy Allison1998-10-281-1/+1
| | | | | fix username overwriting problem in security=share. Jeremy.
* fixed problem with snprintf.c and mkprotoAndrew Tridgell1998-10-282-4/+13
|
* use abort() instead of exit() in smb_panic()Andrew Tridgell1998-10-281-1/+1
| | | | | the reason we don't return() here is that smb_panic() is used not just for segv but also for detected errors (such as buffer overflows)
* fixed handling of %.0f in replacement snprintf.cAndrew Tridgell1998-10-281-12/+28
|
* Fixed a small bug in debug2html. It wasn't properly checking EOF. TheChristopher R. Hertel1998-10-272-2/+28
| | | | | | | | | | | | | | | | current status is "it works". I need to add some syntax error recovery and a usage message. Basic stuff. I've also modified Makefile.in. If you want to compile it you'll have to do a 'make debug2html', as I used smbtorture as a model. We can decide later if this tool is useful enough to be compiled always. BTW, a 'make realclean' fails because the bin directory isn't empty. That's because it doesn't delete optionally compiled files such as smbtorture and debug2html (and because of the CVS subdirectory, but I think that's only a problem for developers). Chris -)-----
* Added info about parsing debug messages.Christopher R. Hertel1998-10-271-28/+210
| | | | Chris -)-----
* debug string with no %s parameter. oopsLuke Leighton1998-10-271-1/+2
|
* amazing. the improvements to NT continue, evidence for which shows upLuke Leighton1998-10-276-17/+19
| | | | | | | | | | | now as "RPC fault" if the UNIHDR structure lengths do not exactly match up to the length of the data stream. so, all versions of samba prior to this one have an off-by-one bug in unicode string lengths. all versions of NT prior to NT 5 beta 2 could possibly have buffer problems when receiving badly formatted UNICODE strings.
* add ifdef for "long double"Andrew Tridgell1998-10-271-12/+18
|
* added a vsnprintf() implementation from cvslock. See the notes on theAndrew Tridgell1998-10-264-47/+803
| | | | | | | | license at the top of lib/snprintf.c I've always been slightly uneasy about our half-baked vslprintf() implementation and the risks on platforms that don't have vsnprintf() so when I saw this code in another GPLd package I wanted it for Samba.
* Here is the simple debug parser and the debug2html converter. Still to do:Christopher R. Hertel1998-10-263-0/+635
| | | | | | | | | | | * Debug message filtering. * I need to add all this to Makefile.in (If it looks at all strange I'll ask for help.) If you want to compile debug2html, you'll need to do it by hand until I make the changes to Makefile.in. Sorry. Chris -)-----
* Fixed a couple of issues with the SMB_QUERY_FILE_ALL_INFO query.Jeremy Allison1998-10-261-2/+5
| | | | | | Ensured offset was being reported correctly for 64 bit file access, ensured delete on close bit was being reported correctly. Jeremy.
* report ourselves as HTTP/1.0 not HTTP/1.1Andrew Tridgell1998-10-261-3/+3
|
* added a couple more error codes to cli_error()Andrew Tridgell1998-10-261-0/+6
|
* fix for John.Andrew Tridgell1998-10-241-8/+8
| | | | don't seek unless absolutely necessary on files in do_put()
* handle the case of an intermediate binary not loading smbwrapper.soAndrew Tridgell1998-10-241-2/+1
| | | | (for example /usr/bin/man because it is setgid).
* volker was concerned about unique inode numbers and smbsh. This set ofAndrew Tridgell1998-10-249-35/+85
| | | | | | changes uses the unique index number from a SMB_QUERY_FILE_ALL_INFO to try to provide inode numbers. If it is 0 then use the hash of the filename as before.
* make sure that apps can't close one of the internal smbw fileAndrew Tridgell1998-10-244-2/+32
| | | | | descriptors by catching close attempts on those fds and returning EBADF.
* Fix for -fpic rules (.c.po and .c.po32) when using --enable-maintainer-mode.Tim Potter1998-10-241-4/+4
|
* Unlink zero length files that did NOT exist at the point of origin on a ↵John Terpstra1998-10-241-1/+4
| | | | do_get() call.
* added domain and local group structures. names may have to be 256 charsLuke Leighton1998-10-232-16/+60
| | | | long not 128 (fstring) length.
* Handle the case where multiple smbd have the file open, some of whomJeremy Allison1998-10-232-17/+76
| | | | | | don't have the ALLOW_DELETE_ON_CLOSE share flag enabled. Told you this was fiddly code :-). Jeremy.
* set netlogon negotiation flags to 0x1ff, not to what the client requests.Luke Leighton1998-10-233-19/+24
| | | | this is 0x4000 01ff on NT4 SP4, and 0x0000 01ff on pre-NT4 SP4.
* possible bug in change oem password code: replaced E_P16 and E_md4hashLuke Leighton1998-10-231-9/+1
| | | | | with a call to nt_lm_owf_gen. if this still doesn't get the NT hash generated correctly then there may instead be a bug in mod_smbpwd_entry().