summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
* r6623: This change fixes a few broken commands plus adds someHerb Lewis2005-05-063-215/+324
| | | | | | | new commands. It also restructures it so you can execute a single command from the command line. Input strings are parsed to allow input of arbitrary characters using the \xx syntax for hex values.
* r6613: Merge back fix for PARANOID_MALLOC checker.Jeremy Allison2005-05-041-1/+3
| | | | Jeremy.
* r6601: fixing query and set alias info calls (level 1 from theGerald Carter2005-05-035-112/+75
| | | | MMC manage computer plugin.
* r6595: This is Volkers new-talloc patch. Just got the go-ahead fromJeremy Allison2005-05-0314-459/+1820
| | | | | Volker to commit. Woo Hoo ! Jeremy.
* r6594: Fix silly typo causing tdb to be freed twice.Jeremy Allison2005-05-031-1/+1
| | | | Jeremy.
* r6588: just include includes.h to get prototypes here.Herb Lewis2005-05-022-3/+2
|
* r6586: get rid of a few more compiler warningsHerb Lewis2005-05-0216-7/+34
|
* r6585: Fix socket-wrapper-enabled build for the tdb toolsJelmer Vernooij2005-05-021-4/+11
|
* r6575: use samba4 torture please message on samba 3 tortureSimo Sorce2005-05-021-0/+3
|
* r6570: Add socket_wrapper library to 3.0. Can be enabled by passingJelmer Vernooij2005-05-025-2/+531
| | | | --enable-socket-wrapper to configure
* r6566: fix a couple of local group bugs.Gerald Carter2005-05-012-8/+14
| | | | | | | | | * ensure that we set full access on the handle returned from _samr_create_dom_alias() so that future set_alias commands succeed * fix bug when looking for internal domains in winbindd (caused winbindd_getgrgid() for local groups to fail).
* r6553: Added Linux per-socket TCP settings patch from "Ed Boraas" ↵Jeremy Allison2005-05-011-0/+9
| | | | | | <ed.boraas@concordia.ab.ca>. Jeremy.
* r6550: Move function make_dir_struct from util to dir.cJeremy Allison2005-05-012-34/+34
| | | | Jeremy.
* r6548: Fix bug #2622 - remove DPTR_MASK as it makes no sense.Jeremy Allison2005-05-012-12/+12
| | | | Jeremy.
* r6543: Fix EDEADLCK problem with deferred open calls. Problem found byJeremy Allison2005-05-011-13/+33
| | | | | "Hu, David J" <david.hu@hp.com> Jeremy.
* r6536: Jeremy, did you actually test this part of revision 801? I just ↵Volker Lendecke2005-04-301-2/+0
| | | | | | | | | | | | | tested that Windows 2003 returns "4 (Local Group)" for rpcclient -c 'lookupnames "System Operators"' Before #ifdef'ing that out again I would like to see a sniff how you get a "5" (WKN_GRP) out of lsa_lookupnames. Volker
* r6533: Fix for bad comment from Andreas Gruenbacher <agruen@suse.de>.Jeremy Allison2005-04-301-2/+2
| | | | Jeremy.
* r6514: Allow domain= to be specified in credentials file. Fix umount.cifs ↵Steve French2005-04-282-6/+40
| | | | | | help, allow root to unmount someone else's mount
* r6505: Add missing remount flag handlingSteve French2005-04-281-0/+2
|
* r6502: add LOCKING debug class - pull PRINTINGDB class definition from trunkHerb Lewis2005-04-277-0/+43
| | | | so our numbers don't get out of sync
* r6499: Add two newer mount options to syntax help for mount.cifsSteve French2005-04-271-1/+1
|
* r6497: Ensure yield_connection() is called on all appropriate error conditions.Jeremy Allison2005-04-261-19/+22
| | | | Jeremy.
* r6495: Bugfix for #2596 by James Peach @ SGI. Fix become_root link issues ↵Jeremy Allison2005-04-262-20/+18
| | | | | | | and one IRIX stack backtrace bug. Jeremy.
* r6493: we're at 3.0.15pre3 nowGerald Carter2005-04-261-1/+1
|
* r6491: BUG 2653: patch from Olaf Imig <Olaf.Imig@bifab.de>; allocate memory ↵Gerald Carter2005-04-261-1/+2
| | | | for user1* in make_spoolss_q_open_printer_ex()
* r6490: BUG 1998: patch from Olaf Imig <Olaf.Imig@bifab.de>; fix byte ↵Gerald Carter2005-04-261-3/+9
| | | | ordering bug when storing 16-bit RAP print job ids
* r6488: net rpc printer migrate should not try to set stuff that's not there. ↵Volker Lendecke2005-04-261-16/+28
| | | | | | | | | This fixes two segfaults. Thanks to Karolin Segger <ks@sernet.de> to find the bug and test the patch. Volker
* r6482: Add support so umount.cifs can update mtabSteve French2005-04-261-45/+80
|
* r6473: Fix for bug #2644 - test for special files to be ignored was reversed.Jeremy Allison2005-04-251-1/+1
| | | | Jeremy.
* r6450: * fix typo in htlm_auth help messageGerald Carter2005-04-253-6/+5
| | | | | | | * add synonym for idmap_rid in better lining with other idmap backend names * remove old debug messages when idmap {uid|gid} options are not defined
* r6447: Add missing error mapping for EMLINK to NT_STATUS_TOO_MANY_LINKS (we ↵Steve French2005-04-241-0/+1
| | | | | | have it the other direction in clierror already). This fixes the return code when we try to hardlink from a client.
* r6445: Make us survive the PARANOID_MALLOC_CHECKER. Should we enable that forVolker Lendecke2005-04-2310-36/+47
| | | | | | --enable-developer=yes? Volker
* r6421: use add machine script when creating a user (ACB_NORMAL)Gerald Carter2005-04-212-3/+6
| | | | | | | who has a name ending in '$' (usrmgr.exe does this for domain trusts (that's was jfm's original comment I think). avoid an assert() call in libldap.
* r6417: Strange old IRIX systems return -1 for telldir() whenJeremy Allison2005-04-211-4/+0
| | | | | | | | end of directory reached. Don't check for that and bail when reading directory entries as it's a valid value. Excellent work from Cale Fairchild <cale@brocku.ca> tracked this down. Jeremy.
* r6412: Add fflush(stdout) after displaying username prompt in smbsh ifTim Potter2005-04-211-0/+1
| | | | username not specified on command line. Bugzilla 2611.
* r6411: Remove configure check for FTRUNCATE_NEEDS_ROOT as it's not actuallyTim Potter2005-04-211-7/+0
| | | | used anywhere in the code anymore. Bugzilla 2625.
* r6408: Fix compile error lurking where PATH_MAX is not defined. Bugzilla #2560.Tim Potter2005-04-211-1/+1
|
* r6407: Fix for bugzilla 2623 and 2630: $< and $* are not valid in explicitTim Potter2005-04-211-5/+5
| | | | rules according to POSIX.
* r6401: Fix a debug messageVolker Lendecke2005-04-201-1/+1
|
* r6395: Fix for Bug 2137, from Jay Fenlason <fenlason@redhat.com>Deryck Hodge2005-04-191-4/+4
| | | | | | Encode quotes for display in HTML. deryck
* r6392: - Fixes bug 2564: when smbc_opendir() was called with a file rather thanDerrell Lipman2005-04-196-37/+48
| | | | | | | a directory, the errno returned could end up as ENOENT rather than ENOTDIR. - Fixes some compiler warnings which showed up on IRIX, as reported by James Peach.
* r6388: BUG 2626: ensure that the calling_name is set to something after ↵Gerald Carter2005-04-191-0/+2
| | | | parsing smb.conf (if not set via -n)
* r6385: Convert checking of egid and secondary egid list intoJeremy Allison2005-04-192-32/+40
| | | | | | iterator functions so it can be used easily in a for loop. Drops duplicated code from posix_acls.c Jeremy.
* r6378: Other systems may not return 1 for checking WRITE permission.Jeremy Allison2005-04-181-0/+13
| | | | | Canaonicalise any +ve return to 1. Jeremy.
* r6367: Slim down pdb_interface.c a bit. next_entry and search_end are functionVolker Lendecke2005-04-183-204/+72
| | | | | | | | pointers now. Yes, Jeremy, this is about re-inventing C++... :-) Volker
* r6365: Wow, how much worse does this get. From info provided byJeremy Allison2005-04-171-0/+26
| | | | | | | Eric Stewart <eric@lib.usf.edu> I realised we weren't checking against the current effective groupid (set by force group) as well as the group list. Fix this. Jeremy.
* r6358: merging SMB_ASSERT() changes from the release branchGerald Carter2005-04-161-1/+8
|
* r6354: merge from 4_0 rev 6353:Stefan Metzmacher2005-04-151-0/+3
| | | | | | we need the english output from the svn commands metze
* r6351: This is quite a large and intrusive patch, but there are not many ↵Volker Lendecke2005-04-1512-975/+1317
| | | | | | | | | | | | | | | | pieces that can be taken out of it, so I decided to commit this in one lump. It changes the passdb enumerating functions to use ldap paged results where possible. In particular the samr calls querydispinfo, enumdomusers and friends have undergone significant internal changes. I have tested this extensively with rpcclient and a bit with usrmgr.exe. More tests and the merge to trunk will follow later. The code is based on a first implementation by Günther Deschner, but has evolved quite a bit since then. Volker
* r6349: Update cifs umount utilitySteve French2005-04-151-8/+22
|