summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* r7954: Fix from tridge from Samba4 (same code exists here) :Jeremy Allison2007-10-101-1/+10
| | | | | fixed handling of ASN.1 objects bigger than 64k Jeremy.
* r7952: Fix for bug #2826 pointed out by Jiri Klouda <jk@zg.cz>.Jeremy Allison2007-10-102-4/+4
| | | | | Wrong return val for symlink and readlink. Jeremy.
* r7949: Work around for broken Solaris header files.Jeremy Allison2007-10-101-0/+26
| | | | Jeremy
* r7948: Ensure we call the vfs connection hook before doing a vfs stat.Jeremy Allison2007-10-101-19/+21
| | | | | | Allows database vfs backends to initialise with a working connection. Bugid #2827 Jeremy.
* r7946: Minor C++ compatibility fix.Jeremy Allison2007-10-101-2/+2
| | | | Jeremy.
* r7944: BUG 2808: don't try to install manpages if they are not presentGerald Carter2007-10-101-0/+4
|
* r7938: * move the hardcoded registry value names from _reg_query_value()Gerald Carter2007-10-106-109/+183
| | | | | | | to a thin layer in fetch_reg_values(). Not entirely efficient seeing as the the dynamic value paths are stored in an unsorted array but it is one strequal() per path. If this was really big it should be worked into the reghook_cache().
* r7908: * change REGISTRY_HOOK api to use const (fix compiler warningGerald Carter2007-10-109-83/+231
| | | | | | | | | | | | | | | | | | | in init_registry_data() * Add means of storing registry values in registry.tdb * add builtin_registry_values[] array for REG_DWORD and REG_SZ values needed during startup * Finish up RegDeleteValue() and RegSetValue() * Finish up regdb_store_reg_values() and regdb_fetch_reg_values() I can now create and retrieve values using regedit.exe on Win2k. bin/net -S rain -U% rpc registry enumerate 'hklm\software\samba' Valuename = Version Type = REG_SZ Data = 3.0.20 Next is to do the virtual writes in reg_printing.c and I'll be done with Print Migrator (yeah! finally)
* r7904: Fix a memleak in vfs_afsaclVolker Lendecke2007-10-101-1/+1
|
* r7903: Attempt to fix the AIX buildVolker Lendecke2007-10-101-10/+10
|
* r7902: Fix the buildVolker Lendecke2007-10-106-30/+30
|
* r7893: Add in the extra parameters to opendir() to fix the large ↵Jeremy Allison2007-10-1018-114/+96
| | | | | | | directory/insane app problem. Rev vfs version. Doesn't change the normal codepath. Jeremy.
* r7890: * add Reg[SG]etKeySec() server stubsGerald Carter2007-10-105-48/+172
| | | | * merge a compile warning fix from trunk to SAMBA_3_0
* r7888: Fix use of "protected".Jeremy Allison2007-10-101-11/+11
| | | | Jeremy.
* r7887: 3.0.20pre2-SVNGerald Carter2007-10-101-1/+1
|
* r7886: Fix building with pam_smbpass.Jeremy Allison2007-10-102-14/+15
| | | | Jeremy.
* r7882: Looks like a large patch - but what it actually does is make SambaJeremy Allison2007-10-1076-826/+835
| | | | | | safe for using our headers and linking with C++ modules. Stops us from using C++ reserved keywords in our code. Jeremy
* r7880: fix a typo and memleak on failures cases (patch from marcin)Gerald Carter2007-10-103-4/+10
|
* r7879: fix compile issue caused by not statoc value for intializing cpp macrosGerald Carter2007-10-101-2/+2
|
* r7878: mostly just a rename of REG_INFO to REG_QUERY_VALUE for better clarityGerald Carter2007-10-106-33/+30
|
* r7877: Attempt to fix a smb_panic reported by Pavel Rochnyack.Volker Lendecke2007-10-102-15/+29
| | | | Volker
* r7876: Now that we have "net rpc share migrate security" completly remove theGünther Deschner2007-10-101-6/+3
| | | | | | | | share-acl from "net rpc share migrate shares". God, how ugly does this syntax get. Guenther
* r7852: Correct fix from Lars for the argv issue.Jeremy Allison2007-10-102-16/+12
| | | | Jeremy.
* r7849: Dodgy fix - we shouldn't be assuming argc++ points to a valid argv.Jeremy Allison2007-10-101-0/+1
| | | | Jeremy.
* r7846: Fix from bugzilla@kevinjamieson.com Kevin Jamieson - typoJeremy Allison2007-10-101-1/+1
| | | | | in checking for .. in statcache. Bugid #2819. Jeremy.
* r7842: With the patch I sent Steve yesterday this gives us complete POSIX ↵Jeremy Allison2007-10-108-5/+101
| | | | | | | pathnames. ie. files containing : and \ can be accessed from Linux. Jeremy.
* r7839: remove C++ style commentGerald Carter2007-10-101-1/+0
|
* r7838: lie about the printer status when doing the queryvalue() registry ↵Gerald Carter2007-10-101-1/+5
| | | | call. Note that if you migrate a printer to a Windows server, the win spooler will remove any printers that have an invalid status value in the registry
* r7836: Fix the bug where users show up as trusting domains.Volker Lendecke2007-10-101-9/+22
| | | | Volker
* r7835: Add the forgotten GPL header. This source code file is distributed ↵Volker Lendecke2007-10-101-0/+14
| | | | | | | | | | with Samba and interfaces to the Linux kernel (both GPL programs), so it was always our (Paal-Kr. Engstad and Volker Lendecke) intent that this program is covered by the GPL. Volker
* r7830: fix directory typo with testprns manpageGerald Carter2007-10-101-1/+1
|
* r7829: fix unitialized printer status field that was breaking migration of ↵Gerald Carter2007-10-101-0/+2
| | | | print queues
* r7825: Fedora packaging fixes after docs changeGerald Carter2007-10-101-9/+4
|
* r7822: fixing specfiles after removing testprnsGerald Carter2007-10-102-11/+1
|
* r7821: Don't check permissions for setting POSIX pathname request.Jeremy Allison2007-10-101-53/+56
| | | | Jeremy.
* r7817: Eliminate use of ctime_r() in libsmbclient DEBUG statement. It seems ↵Derrell Lipman2007-10-101-4/+16
| | | | | | | that ctime_r() takes different parameters on Solaris than it does on Linux, and it's easier to just eliminate the use of it than to write a configure test.
* r7807: Allow to touch mtime in vfs-recycle withGünther Deschner2007-10-101-5/+16
| | | | | | recycle:touch_mtime = true Guenther
* r7798: CIFSFS client assumes wcnt == 10 for successful trans2 reply.Jeremy Allison2007-10-101-9/+8
| | | | Jeremy.
* r7796: Prepare for client setting capabilities to select posix pathnames onJeremy Allison2007-10-102-26/+51
| | | | | | the wire. Jerry do not merge this please. New SMB_SET_FS_INFO - level 0x200 as was discussed on the mailing list. Jeremy.
* r7789: fix overparanoid assert() call when checking spolss buffer pointersGerald Carter2007-10-101-6/+12
|
* r7788: Update install swat message to reflect the fact that swat/READMETim Potter2007-10-101-1/+1
| | | | no longer exists. Bugzilla #2808.
* r7787: Fix from Fernando Schapachnik <fernando@mecon.gov.ar> to add logon hoursJeremy Allison2007-10-103-58/+213
| | | | | support for the Postgres backend. Jeremy.
* r7785: This looks much larger than it is. It changes the top-level functions ↵Volker Lendecke2007-10-109-298/+368
| | | | | | | | | | | | | | | of the parent winbind not to return winbindd_result. This is to hopefully fix all the problems where a result has been scheduled for write twice. The problematic ones have been the functions that might have been delayed as well as under other circumstances immediately gets answered from the cache. Now a request needs to be explicitly replied to with a request_error() or request_ok(). Volker
* r7730: Some mergesVolker Lendecke2007-10-101-22/+4
|
* r7718: Remove some unused codeVolker Lendecke2007-10-101-39/+0
|
* r7708: Hint from Luke Howard (thanks Luke). Ensure the schannel ↵Jeremy Allison2007-10-101-1/+1
| | | | | | | | authenticator is 8 byte aligned, just like the NTLMSSP ones. Trying to fix 64-bit Windows domain logon. Jeremy.
* r7703: Fix the problem with MAP_PRIVATE not updating the file.Richard Sharpe2007-10-101-1/+1
|
* r7701: Patch from James Peach | jpeach@sgi.com to make wrepld use newJeremy Allison2007-10-103-13/+13
| | | | | talloc interfaces. Jeremy.
* r7698: * clean upserver frontend for RegDeleteKey()Gerald Carter2007-10-103-37/+147
| | | | * implement RegDeleteKey() for reg_db backend
* r7696: Don't try and be clever and read an 8 byte int and 3 pad bytesJeremy Allison2007-10-102-3/+3
| | | | | | as a uint32 - you'll just get it wrong (as I did :-). Second attempt to fix the Apple client issues. Jeremy.