summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
| * r8695: Patch from James Peach for hires timestamps and efficientJeremy Allison2005-07-222-4/+85
| | | | | | | | | | | | notify code. Bugid #2285. The last commit by me on behalf of James as he will be able to do his own now :-). Jeremy.
| * r8689: Fixes bugid #2889 for sure. Turns out the OS/2 dos box doesn't like ↵Jeremy Allison2005-07-211-14/+21
| | | | | | | | | | | | | | two offsets to be identical. Make offsets for . and .. different (and explicit). Jeremy.
| * r8686: Revert %LOGONSERVER%-substitution. The substition is done on the client,Günther Deschner2005-07-213-12/+21
| | | | | | | | | | | | | | | | | | | | | | not on the server. We now preserve this windows variable (important for vampired setups) and correctly substitute only the "%L"s in strings like: "%LOGONSERVER% %L %lOgOnSeRvEr% %L". Guenther
| * r8682: fix vfstest, thanks to Rainer Link for spotting this oneSimo Sorce2005-07-211-0/+2
| |
| * r8675: fix some compile warnings.Günther Deschner2005-07-212-2/+2
| | | | | | | | Guenther
| * r8673: merged from samba4Andrew Tridgell2005-07-211-4/+15
| |
| * r8655: Still trying to fix #2889. We don't need the DPTR_MASK afterJeremy Allison2005-07-201-9/+2
| | | | | | | | | | all, now thinking it might be to do with flags2... Jeremy.
| * r8654: merging cli_spoolss_XX() updates from trunkGerald Carter2005-07-2010-2115/+1187
| |
| * r8653: Fix bug #2659.Lars Müller2005-07-201-1/+1
| |
| * r8641: Fix bug #2262. Now we accept freebsd 5 till 9 as suggested by TimurLars Müller2005-07-201-2/+2
| | | | | | | | Bakeyev.
| * r8617: Be very explicit if addprinterex is called that the "addprinter command"Jeremy Allison2005-07-191-2/+7
| | | | | | | | | | must be defined in smb.conf. Jeremy.
| * r8615: Added "acl group control". Defaults to off. Docs to follow.Jeremy Allison2005-07-192-34/+131
| | | | | | | | Jeremy.
| * r8610: If I'm going to do a debug level zero, at least make it useful.Jeremy Allison2005-07-191-1/+2
| | | | | | | | Jeremy.
| * r8609: Fix for bugid #2889. I think the problem is that the top 16 bits of ↵Jeremy Allison2005-07-192-3/+11
| | | | | | | | | | | | | | | | | | | | the "server state" field must be non-zero. As we're using the 32 bit field as an offset then normally this field will be zero. W2K3 fills this field with a counter enumerating the number of SMBsearch calls on this directory - starting at 1. Add back the 1<<31 bit flag DPTR_MASK to ensure this is non-zero - with better checks on use. Jeremy.
| * r8607: BUG 2900 more compiler warningsGerald Carter2005-07-191-9/+10
| |
| * r8606: BUG 2899: fix compiler warning in regfio routineGerald Carter2005-07-191-1/+1
| |
| * r8604: BUG 2890: fix unitialized variable reported by Jason Mader ↵Gerald Carter2005-07-191-0/+1
| | | | | | | | <jason@ncac.gwu.edu>
| * r8597: Use UNI_STR_TERMINATE (an enum value) instead of STR_TERMINATE (a Tim Potter2005-07-191-1/+1
| | | | | | | | #define) to quieten a warning. Bugzilla #2892.
| * r8596: Don't wrap non-existent functions. Bugzilla #2895.Tim Potter2005-07-191-45/+0
| |
| * r8595: Delete unused prototypes.Tim Potter2005-07-191-2/+0
| |
| * r8592: I'm pretty sure this should be != instead of =!. Bugzilla #2893.Tim Potter2005-07-191-1/+1
| |
| * r8573: Fix set but not used warning in srvsvc server-side code. Tim Potter2005-07-191-2/+2
| | | | | | | | Another bugzilla (#2891) from Jason Mader.
| * r8572: Remove crufty #define NO_SYSLOG as it's not used at all anymore.Tim Potter2005-07-1929-58/+0
| |
| * r8564: Sometimes we're too dumb to live... Fix samr calls where we wereJeremy Allison2005-07-197-116/+116
| | | | | | | | | | | | | | using USER_INFO_XX structs and functions where XX was sometimes in hex and sometimes in decimal. Now it's all in decimal (should be no functionality change). Jeremy.
| * r8556: Fix bug #2878 - Norton commander not running on OS/2 client - we wereJeremy Allison2005-07-181-1/+1
| | | | | | | | | | | | not correctly returning the requested open mode. Thanks to alex@infobit.ru for reporting this. Jeremy.
| * r8553: Another compile warning fix from jason@ncac.gwu.edu.Jeremy Allison2005-07-181-1/+1
| | | | | | | | Jeremy.
| * r8552: Warning fix from jason@ncac.gwu.edu.Jeremy Allison2005-07-181-1/+1
| | | | | | | | Jeremy.
| * r8547: Code tidyup from Jason Mader <jason@ncac.gwu.edu>. Bugid #2885.Jeremy Allison2005-07-181-2/+0
| | | | | | | | Jeremy.
| * r8545: Fix oplock bug introduced by oplock code "simplification" :-).Jeremy Allison2005-07-181-5/+5
| | | | | | | | | | | | We *always* reply to an exclusive oplock break message even if we have no record of the oplock (and we always did before 3.0.20pre2). Jeremy.
| * r8543: merge volker's nt_printing_init() fix from trunk (r8526)Gerald Carter2005-07-181-1/+6
| | | | | | | | but make sure to write the new version to the ntdrivers.tdb.
| * r8542: - (re-)add better search-semantics: look for Interdomain trust accountsGünther Deschner2005-07-181-2/+2
| | | | | | | | | | | | | | | | | | | | below the machine-suffix (this is where we create them)) to avoid digging through thousands of user-accounts just to find a handful of trust-accounts in the enumdomusers-samr-call. - don't access freed data in DEBUG-statement Guenther
| * r8538: honour CC in python build.Günther Deschner2005-07-181-0/+2
| | | | | | | | Guenther
| * r8531: Fix a memleakVolker Lendecke2005-07-171-0/+1
| |
| * r8521: Another micro-step: Don't pass down a flag where not necessary.Volker Lendecke2005-07-171-14/+16
| | | | | | | | Volker
| * r8510: Don't include the valgrind headers on 64bit linux systems.Gerald Carter2005-07-152-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | Several incarnations of gcc bork with Compiling dynconfig.c /tmp/ccXd94O5.s: Assembler messages: /tmp/ccXd94O5.s:1202: Error: suffix or operands invalid for `mov' /tmp/ccXd94O5.s:1289: Error: suffix or operands invalid for `mov'` Thanks to Bent Vangli for the the leg work and suggestions.
| * r8508: Rename EXCLUSIVE_BREAK_SENT to BREAK_TO_NONE_SENT.Volker Lendecke2005-07-152-3/+3
| | | | | | | | Volker
| * r8507: BUG 2557: don't give and rpc fault when you get an unsupported ↵Gerald Carter2005-07-151-0/+16
| | | | | | | | SetPrinter() level
| * r8506: BUG 2853: don't strip out characters like '$' from printer namesGerald Carter2005-07-152-19/+20
| | | | | | | | when substituting for the lpq command.
| * r8501: * disable printer handle object cache (was mostly used Gerald Carter2005-07-153-68/+181
| | | | | | | | | | | | | | | | | | | | for NT4 clients enumerating printer data on slow CPUs) * fix pinter and secdesc record upgrade to normalize the key (rev'd printer tdb version) * fixed problem that was normalizing the printername name field in general, this should fix the issues upgrading print servers from 3.0.14a to 3.0.20
| * r8493: According to MSKB 141714 the %LOGONSERVER% variable should beGünther Deschner2005-07-151-2/+7
| | | | | | | | | | | | substituted like our %L-variable. Guenther
| * r8492: open_mode_check does not use the parameter p_flags, so remove it.Volker Lendecke2005-07-151-3/+2
| | | | | | | | Volker
| * r8478: remove unused printmode command from smbclient (noticed by ↵Gerald Carter2005-07-141-40/+0
| | | | | | | | kalim@samba.org)
| * r8475: BUG 2872: fix cut-n-paste error when checking pointer value in ↵Gerald Carter2005-07-141-1/+1
| | | | | | | | ntlmssp_set_workstation()
| * r8472: abartlet's patch for parallel ntlmssp ↵Gerald Carter2005-07-143-18/+96
| | | | | | | | supporttrunk/source/smbd/sesssetup.c
| * r8457: Fix from Marcel Müller <mueller@maazl.de> to ensureJeremy Allison2005-07-141-1/+1
| | | | | | | | | | | | we correctly set the return packet size to include the pad bytes in reply_readbmpx(). Jeremy.
| * r8454: Fix Bug #2502Günther Deschner2005-07-142-16/+0
| | | | | | | | | | | | | | | | | | | | | | | | Removing deprecated lp_min_password_length (the same functionality is provided by the account policy). Note that we now allow to set passwords less then 5 chars (if the admins decides to do so by setting the account policy). Thanks to Daniel Beschorner <db@unit-netz.de> Guenther
| * r8435: Use OPENX_FILE_EXISTS_OPEN instead of FILE_EXISTS_OPEN.Lars Müller2005-07-131-1/+1
| |
| * r8432: Fix #2077 - login to trusted domain doesn't allow home drive map and ↵Jim McDonough2005-07-133-2/+12
| | | | | | | | | | | | | | | | | | | | | | login scripts to be executed. We were filling in our name as the server which processed the login, even when it was done by a trusted DC. Thanks to John Janosik <jpjanosi@us.ibm.com> for the fix.
| * r8431: Ensure to use dev_private and not private after Jeremy's CPP reservedLars Müller2005-07-131-2/+2
| | | | | | | | | | | | | | names rename. Jerry: I'm not sure if we have to use the string 'dev_private' instead of 'private' as second arg to PyDict_SetItemString().
| * r8428: some more old printerdb stuff.Günther Deschner2005-07-131-1/+0
| | | | | | | | Guenther