summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* r3918: Allow to set OWNER- and GROUP-entries while setting security descriptorsGünther Deschner2004-11-231-1/+9
| | | | | | with smbcacls and using with the -S or -M switch. Fixes #404 and #2076. Guenther
* r3912: More fixes to have proper german in swat. Günther Deschner2004-11-221-53/+53
| | | | | | | | (The new german orthography is another story...) Thanks to Reiner Klaproth and Björn Jacke <bjacke@sernet.de>. Guenther
* r3911: typo.Günther Deschner2004-11-221-1/+1
| | | | Guenther
* r3895: Fix for bug #2045. May also fix other timestamp bugs with Excel Jeremy Allison2004-11-202-7/+27
| | | | | | | | (Volker please test). Setting a last write timestamp from Windows overrides any subsequent write timestamp changes and must be immediately seen by and findfirst/findnexts. This is a racy solution, but should work most of the time. This may also fix #1061, not sure. Jeremy.
* r3892: Fix "might be used uninitialized" error.Jeremy Allison2004-11-201-0/+6
| | | | Jeremy.
* r3889: Only set mtime from pending_modtime if it's not already zero...Jeremy Allison2004-11-201-1/+1
| | | | Jeremy.
* r3883: Fix error return -- thanks to rsharpeVolker Lendecke2004-11-191-1/+1
|
* r3882: Fix bug 2069 -- thanks to jason@ncac.gwu.eduVolker Lendecke2004-11-191-1/+2
|
* r3880: Tidy up some unused/shadowed variable usage.Jeremy Allison2004-11-191-4/+5
| | | | Jeremy.
* r3877: Final (I hope :-) fix for #2050 from Lars Müller for select maxfd's.Jeremy Allison2004-11-193-24/+17
| | | | Jeremy.
* r3875: Allow to look up at least or own sid in _lsa_lookup_sids.Günther Deschner2004-11-193-2/+17
| | | | | | | This fixes Bugzilla #1076 and Exchange 5.5 SP4 can then be finally installed on NT4 in a samba-controlled domain. Guenther
* r3873: The semantics of the parameter 'printcap name' are a bit tricky. I ↵Volker Lendecke2004-11-191-5/+20
| | | | | | | | | | | | | | | | | | | | | had seen the effect that I could not list printers with smbclient -L. I have cups libraries but no running cups server, so remove_stale_printers() removed all my printer definitions from the share list. So I said 'printing = bsd' but it still would not work. This happened because init_globals() would initialize Globals.szPrintcapname to "cups", and the explicit 'printing = bsd' did not reset it. 'printing=bsd' can't reset it, as this might overwrite an explicit setting. Thus I separated the lp_printcapname into a function of its own, looking at Globals.szPrintcapname and subsequently at sDefault.iPrinting. Please revisit, there are just too many cases to cover. Thanks, Volker
* r3871: Fix memleakVolker Lendecke2004-11-191-1/+3
|
* r3868: Fix reverted logic of detecting HAVE_WRFILE_KEYTAB (Bugzilla 2059)Günther Deschner2004-11-181-3/+1
| | | | Guenther
* r3867: Fix from david.hu@hp.com - make a copy of an incoming messageJeremy Allison2004-11-181-5/+5
| | | | | | rather than indirecting into it as a struct (may not be on an even byte boundary). Bug #2052. Jeremy.
* r3864: Fix from Lars Müller <lmuelle@suse.de> for bug #2050.Jeremy Allison2004-11-181-3/+19
| | | | | Make nmbd use maxfd+1 in select also. Jeremy.
* r3862: Fix from Lars Müller <lmuelle@suse.de>, check for HAVE_WRFILE_KEYTABJeremy Allison2004-11-181-2/+2
| | | | | was inverted. Jeremy.
* r3859: Ensure if num_acls is set to 0xFFFF this field is ignored.Jeremy Allison2004-11-183-55/+74
| | | | | Use def_acl everywhere instead of dir_acl. Jeremy.
* r3857: Shut up gcc about erroneous "used uninitialised" warning.Jeremy Allison2004-11-181-3/+3
| | | | Jeremy.
* r3855: Sync up with the one in the main source dir (yes, this should probablyJeremy Allison2004-11-181-17/+22
| | | | | be a symlink...). Jeremy.
* r3853: Fix an uninitialized variable warning. Jeremy, there are some of these inVolker Lendecke2004-11-181-0/+2
| | | | | | charcnv.c. Volker
* r3852: Fix the build...Volker Lendecke2004-11-181-1/+1
|
* r3850: I get the impression that some developers here are using gcc 3.4. ↵Volker Lendecke2004-11-181-1/+1
| | | | | | | | | This one only warns you about possibly uninitialized variables if you have at least -O1. Volker
* r3848: Fix for bug 2057. Only partially applied the patch, the second part ↵Volker Lendecke2004-11-181-0/+7
| | | | | | | | | | | seems not necessary. I'm using gcc 3.4.1, this does not detect the possibly uninitialized variable. Does anybody know how to get 3.4.1 to warn me? Volker
* r3846: Typo fix. Bug 2055. Lars, I'm available on irc.... :-)Volker Lendecke2004-11-181-1/+1
| | | | Volker
* r3844: Attempt to get the build farm in line. Some systems seem to have definedVolker Lendecke2004-11-182-3/+3
| | | | | | | rewinddir as a macro and don't like the construct to call a function pointer called rewinddir. Work around by renaming the function pointer... Volker
* r3843: If a connection to a DC is requested, open connections ↵Volker Lendecke2004-11-184-163/+567
| | | | | | | | simultaeneously to all DCs found. The first one to reply wins. Volker
* r3841: Time out in ads search queries. Even AD servers can hang.Volker Lendecke2004-11-181-7/+44
| | | | Volker
* r3839: Some more specific NT security descriptors we've come across. Map them toVolker Lendecke2004-11-181-2/+13
| | | | | | defined AFS acls. Thanks to Horst Birthelmer. Volker
* r3824: Fix crash in api_RNetShareEnum. ServicePtrs[] may contain invalidVolker Lendecke2004-11-171-0/+4
| | | | | | entries. Happened after rev3708 removed non-existing cups printers. Volker
* r3823: Fix bug reported by Tom Dickson <tdickson@inostor.com> withJeremy Allison2004-11-171-1/+2
| | | | | | follow symlinks = no reporting an incorrect error when it should be access denied. Jeremy.
* r3819: Updated config.guess/config.sub fromJeremy Allison2004-11-172-167/+345
| | | | | | | ftp://ftp.gnu.org/pub/gnu/config/config.guess ftp://ftp.gnu.org/pub/gnu/config/config.sub as requested in bugid #2048. Jeremy.
* r3817: Fix from Lars Müller <lmuelle@suse.de> for bug #2050, calculateJeremy Allison2004-11-171-2/+8
| | | | | max_fd for select correctly. Jeremy.
* r3816: Added fn to remove an ACL from a file. Now need client code to test this.Jeremy Allison2004-11-171-2/+128
| | | | | How do the share mask/modes fit into this code... Need to think about this. Jeremy.
* r3814: At least use a proper constant name (aRONLY :-) not a number.Jeremy Allison2004-11-171-2/+2
| | | | | That way we can at least remember why we did this :-). Jeremy.
* r3811: Believe it or not, but this patch seems to be necessary. If someone ↵Volker Lendecke2004-11-171-2/+11
| | | | | | | | | | | | | | | sets a folder icon in the start menu and saves the profile on a samba server, after logging in again this setting is gone. Why is this? The folder for which the icon is set must have the read only flag set. If it is not set, the desktop.ini file (the file containing the icon reference) inside that folder is ignored. lp_profile_acls is a hack for such a situation, so overload this parameter with another profile-related hack. Volker
* r3796: Patch from Jay Fenlason <fenlason@redhat.com>. Don't free static buffers.Jeremy Allison2004-11-171-1/+0
| | | | Jeremy.
* r3794: Added set posix acl functionality into the UNIX extensions code.Jeremy Allison2004-11-172-6/+273
| | | | | | One part missing - delete file acl (to be added asap). No client code yet, also needs testing with valgrind. Jeremy.
* r3778: BUG 2023: patch from Buchan Milne <bgmilne@mandrake.org> fix mandrake ↵Gerald Carter2004-11-164-123/+198
| | | | packaging for Samba 3.0.9 -- still need to review this libsmbclient install location
* r3776: Fix for bug #2038 from Johann Hanne <jhml@gmx.net>. Don't checkJeremy Allison2004-11-151-9/+4
| | | | | | for no groups after every lookup - move check to the end as we should only fail if all lookups fail. Jeremy.
* r3772: BUG 2006: patch from Michel Gravey <michel.gravey@optogone.com>; fix ↵Gerald Carter2004-11-152-2/+2
| | | | build when using gcc 3.0
* r3771: Fix bug #1952: no comment on XP shutdownJim McDonough2004-11-151-11/+70
| | | | | Try INITSHUTDOWN pipe first, used by newer clients. If it fails, fall back to WINREG.
* r3764: Ensure on failure that *res is always NULL.Jeremy Allison2004-11-151-3/+8
| | | | | Check for malloc fail. Fixes for bug #2036. Jeremy.
* r3761: Fix bug #1932: crash when non-root invokes net getlocalsidJim McDonough2004-11-151-1/+9
| | | | First check to see if we can open secrets.tdb.
* r3758: Increase a debug level. This error condition can actually happen in ↵Volker Lendecke2004-11-151-1/+1
| | | | | | | | | real life if you have several competing winbinds that might get a lag due to replication. Volker
* r3727: Update from Rob Foehl (rwf@loonybin.net):Jim McDonough2004-11-141-24/+10
| | | | | | Try modifying printer before adding it,since add logic appends ObjectClass to mods, which caused a contraint violation when modifying an already published printer. Also cleanup the check_published_printers() logic when verifying published status on startup.
* r3714: Getfacl now seems to work on files and directories. Next do setfaclJeremy Allison2004-11-133-3/+135
| | | | | and port to Samba4. Jeremy.
* r3713: Implementation of get posix acls in UNIX extensions. Passes valgrind.Jeremy Allison2004-11-125-3/+418
| | | | | | | | Need to add printout functions in client and set posix acl in server. SteveF - take a look at this for the cifsfs client ! Once this is working and tested the next step is to write this up for the UNIX extensions spec. documents. Jeremy.
* r3711: Fix KRB5_SETPW-defines, no change in behaviour. Günther Deschner2004-11-121-7/+5
| | | | | | | | | A value of '2' is due to an expired internet draft, while 0xff80 comes from RFC3244. See Bugzilla #1661 for details. Thanks to Luke Mewburn <lukem@NetBSD.org> for his research. Guenther
* r3710: fix another safe_strcpy() warning SPAM with the printer drivcenameGerald Carter2004-11-121-1/+1
|