summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* preparing for release of 2.0.0Samba Release Account1999-01-1458-57/+60
|
* Changed version to 2.0.0 for official release.Jeremy Allison1999-01-141-1/+1
| | | | Jeremy.
* Changed 'large lock' warning message to debug level 1, not zero, toJeremy Allison1999-01-141-2/+2
| | | | | | allow people to turn it off if it really bugs them and in case we get it a lot. Jeremy.
* Adding Volkers SuSE 6.0 pacakging files for 2.0.0.Jeremy Allison1999-01-142-0/+334
| | | | Jermey.
* Ensuring docs are up-to-date for 2.0.0.Jeremy Allison1999-01-1419-19/+27
| | | | Jeremy.
* Preparing for official 2.0.0 release.Jeremy Allison1999-01-141-2/+2
| | | | Jeremy.
* Fixed problem where with POSIX signal handling (as used in Solaris andJeremy Allison1999-01-141-1/+21
| | | | | | | IRIX) we would infinately loop on a SIGCLD in the password changing code. Just lucky we didn't get bitten in the generic SIGCLD case (but I fixed that too). Jeremy.
* Fixed the *other* typo in the mapping of 64 bit to 32 bit lock ranges :-).Jeremy Allison1999-01-141-1/+1
| | | | Jeremy.
* fixed a missing IVAL in get_lock_offset(). There was no way that thisAndrew Tridgell1999-01-141-1/+1
| | | | | code could have worked, so I'm a little suspicious of the testing that has been done on it!
* Fixed typo in uname command for HPUX that was preventing large file support.Jeremy Allison1999-01-132-2/+2
| | | | Jeremy.
* utils/testparm.c: Fixed "passwd program" tests to look for the correct program.Jeremy Allison1999-01-132-6/+15
| | | | | | smbd/reply.c: Changed "Error" in level 0 debug message about NT bug to "Warning" as Samba will continue without it. Jeremy.
* configure configure.in: Fixed the compile problem with Solaris 2.6/2.7 andJeremy Allison1999-01-135-536/+593
| | | | | | | | | | | | | | gcc2.7.x - this condition is now auto detected and uses the correct flags. smbd/reply.c: Did more mapping for 64-bit lock requests on 32 bit systems. smbd/nttrans.c: smbd/oplock.c: Fixed the MS-Office not noticing files are open problem. This was a *subtle* problem and now needs testing to ensure the fix is correct. It's past 8pm, I'm tired and I'm going for a pizza. Jeremy.
* don't show create printer entries on printers page if you don't have haveHerb Lewis1999-01-121-4/+6
| | | | write access.
* Fixed biffer too small error to have 0xC0000000 OR'ed into it justJeremy Allison1999-01-121-1/+2
| | | | | to be the same as NT (seems to work without it but you never know...). Jeremy.
* Implemented NT_QUERY_SECURITY_DESCRIPTOR in the same way that NT respondsJeremy Allison1999-01-124-18/+109
| | | | | | if you send this query to a FAT volume. Phew - I'm glad I got this one in under the wire for 2.0.0..... Jeremy.
* libsmb/nmblib.c: Fixed bug where odd byte count could cause nmbd toJeremy Allison1999-01-114-26/+70
| | | | | | | | do too many iterations. nmbd/nmbd.c: Fixed SIGHUP handling to act the same as smbd. smbd/reply.c: Added code to map 64-bit lock ranges where possible on 32-bit systems. smbd/server.c: Fixed comment. Jeremy.
* Fixed tests for platforms that have setreuid but not setresuid (suchJeremy Allison1999-01-111-12/+19
| | | | | as RedHat 5.x). Jeremy.
* don't panic on a null params in api_reply(). instead just return anAndrew Tridgell1999-01-101-1/+4
| | | | error (smbtorture sends null params)
* fixed two compiler warningsAndrew Tridgell1999-01-101-2/+1
|
* fixed (harmless) bug in DEBUG() messageAndrew Tridgell1999-01-101-1/+1
|
* Fixed change notify for Visual C++.Jeremy Allison1999-01-091-28/+118
| | | | | | | | | | | No-one seemed to have noticed it wasn't working (this worries me....). ChangeNotify now scans the directory if necessary and uses the sum of all timestamps and the number of entries as the 'hash' to determin if anything changed. Jeremy.
* jeremy had already added code to handle null paths :)Andrew Tridgell1999-01-091-1/+1
|
* handle null path in smbw_path()Andrew Tridgell1999-01-081-1/+1
|
* Check for a null pointer in smbw_path.Jeremy Allison1999-01-081-0/+3
| | | | Jeremy.
* Removing auto-generated file at the request of the packaging maintainer.Jeremy Allison1999-01-081-171/+0
| | | | Jeremy.
* Fixed the 16-bit app directory handle problem (this took *way* longerJeremy Allison1999-01-084-164/+242
| | | | | | | | than it should :-). SMBsearch now gets directory handles that are 8 bit in the range 1-255 and will close the oldest non-expect-close handle if the table gets full. findfirst gets 16 bit directory handles starting at 256 and above. Jeremy.
* Added contributed HPUX packaging tools. Thank-you <leon@hermes.si>John Terpstra1999-01-0813-0/+888
|
* nmbd/nmbd_incomingrequests.c: Split long debug message.Jeremy Allison1999-01-072-1/+4
| | | | | | utils/smbpasswd.c: Added load_interfaces() to allow name resolution to work correctly for multihomed smb.confs. Jeremy.
* Now we're mallocing our directory handles rather then using a staticJeremy Allison1999-01-072-55/+68
| | | | | | | array, leaks are rather more severe :-). This fixes a bug in trans2 findfirst where I forgot to close a directory handle if returning a 'no such file' error. Also fixed a similar case in smbsearch. Jeremy.
* Removed 'counter' from timeout processing. Timeouts now depend on actualJeremy Allison1999-01-074-24/+52
| | | | | | | time calculations, not by incrementing a counter. The select timeout is set to the old (lower) value of 10 seconds if there are blocking locks pending, and to the newer 60 second value if not. Jeremy.
* Remember to return after idling the oldest dirptr so we don't idle allJeremy Allison1999-01-071-1/+3
| | | | | of them. Jeremy.
* Fixed the blocking locks and change notify code that got broken inJeremy Allison1999-01-064-155/+184
| | | | | | | | | | | beta5. The problem was that I had increased the select timeout so much that the client was sending echo requests as a sort of keepalive. As smbd only did timeout processing on select timeout then not much timeout processing was being done :-). I've fixed this by moving the timeout code to a function and calling it every time we get an SMBecho request (we must have been idle at that point). Jeremy.
* Added full pathname lock patch from Andy <thwartedefforts@wonky.org>Jeremy Allison1999-01-062-5/+9
| | | | Jeremy.
* Allow force user to take %S substitution.Jeremy Allison1999-01-061-2/+6
| | | | Jeremy.
* lib/util_sec.c: Fixed order of calls to setresuid/setreuid/seteuid based on ↵Jeremy Allison1999-01-062-12/+12
| | | | | | | | autoconf tests. tests/trapdoor.c: Fixed problem where setresgid was being called in block of code that was #ifdefed for setregid. Jeremy.
* Converted the code in smbd/dir.c to use bitmaps instead of a staticJeremy Allison1999-01-064-191/+255
| | | | | | | | array for directory handles. This tidied up the code a *lot*. Plus it means I've fixed the bug in PR#10058, which was due to an NT app that wanted to simultaneously open >256 directory handles. Jeremy.
* Updated compilation options and fixed Digital package-prep script.John Terpstra1999-01-054-12/+12
|
* Modified BROKEN_CC rule in .c.o so that it doesn't rely on basename,Alexandre Oliva1999-01-051-2/+3
| | | | | | | using sed instead. Systems that lack `-o' abilities are very likely to lack basename too. Also modified the rules .c.po and .c.po32 so that the .o file is renamed to .po*.o, since a later `mv' will take care of removing the `.o' suffix
* change man page suffix to .z instead of .ZHerb Lewis1999-01-051-1/+1
|
* all other man pages are using pack instead of compress format so I will tooHerb Lewis1999-01-051-1/+1
|
* Added autoconf test for FTRUNCATE_NEEDS_ROOT.Jeremy Allison1999-01-046-92/+280
| | | | | | Fixed <rpc/rpc.h> include bug for SCO. Test for <arpa/inet.h> include for HPUX7.x. Jeremy.
* acconfig.h configure configure.in include/config.h.in lib/system.c: Fixed ↵Jeremy Allison1999-01-048-161/+229
| | | | | | | | | --with-mmap code. lib/time.c: Changed %T to %H:%M:%S for systems that don't have %T. locking/locking_slow.c: Re-added FTRUNCATE_NEEDS_ROOT code - now to test for it... smbd/quotas.c: Fixed IRIX quota compile. Jeremy.
* Removed one reference to Red Hat, changed to PHT TurboLinux.John Terpstra1999-01-021-1/+1
|
* Changed spaces to tabs in BROKEN_CC line (doh!).Jeremy Allison1998-12-311-2/+2
| | | | | | | Problem spotted by Tim Rice, who sent in the original patch. This problem will only bite beta5 users who have a broken CC that won't use -c -o simultaneously. Jeremy.
* preparing for release of 2.0.0beta5Samba Release Account1998-12-3158-58/+58
|
* WHATSNEW.txt: Updated for beta5.Jeremy Allison1998-12-313-4/+4
| | | | | | | source/include/local.h: Changed select look timeouts to 60 seconds (120 to scan smb.conf file). source/include/version.h: Updated to beta5. Jeremy.
* Fixed bug in nttrans call where parameter buffer was not beingJeremy Allison1998-12-301-0/+2
| | | | | zeroed out before use. Jeremy.
* client/client.c: Fixed comment.Jeremy Allison1998-12-308-518/+641
| | | | | | All others - added checks for the compiler understanding volatile and the system having sig_atomic_t. Changed sighup code to use this. Jeremy.
* Added BROKEN_NIS_INCLUDE fix here also.Jeremy Allison1998-12-301-6/+28
| | | | Jeremy.
* Replaced damaged skeleton.tar files with working copy, added warningJohn Terpstra1998-12-293-0/+11
| | | | to anyone who tries to use any package building tool.