tprouty/samba.git
16 years agor428: add acls debug class
Herb Lewis [Fri, 30 Apr 2004 14:28:38 +0000 (14:28 +0000)]
r428: add acls debug class

16 years agor426: fixed bug noticed by wim.delvaux@adaptiveplanet.com in handling of timeout...
Andrew Tridgell [Fri, 30 Apr 2004 13:58:23 +0000 (13:58 +0000)]
r426: fixed bug noticed by wim.delvaux@adaptiveplanet.com in handling of timeout in socket connections

16 years agor422: Compile fix for OpenBSD (ENOTSUP not supported - ha ha).
Tim Potter [Fri, 30 Apr 2004 07:53:52 +0000 (07:53 +0000)]
r422: Compile fix for OpenBSD (ENOTSUP not supported - ha ha).

From Eric Mertens.

16 years agor421: Fix debug message. Closes bugzilla #1305.
Tim Potter [Fri, 30 Apr 2004 06:33:58 +0000 (06:33 +0000)]
r421: Fix debug message.  Closes bugzilla #1305.

16 years agor416: add a newline to the debuglevel message returned string
Herb Lewis [Thu, 29 Apr 2004 23:05:58 +0000 (23:05 +0000)]
r416: add a newline to the debuglevel message returned string
and have smbcontrol print the PID with it

16 years agor415: Return NT_STATUS_ACCESS_DENIED not some LOCK message ...
Richard Sharpe [Thu, 29 Apr 2004 22:41:47 +0000 (22:41 +0000)]
r415: Return NT_STATUS_ACCESS_DENIED not some LOCK message ...

16 years agor413: merge from 4_0:
Stefan Metzmacher [Thu, 29 Apr 2004 21:03:42 +0000 (21:03 +0000)]
r413: merge from 4_0:
as we decide to not do 3.0.2a releases anymore,
remove the generation stuff from VERSION and mkversion.sh

metze

16 years agor410: merge tpot's changeset 353 from trunk:
Stefan Metzmacher [Thu, 29 Apr 2004 20:47:48 +0000 (20:47 +0000)]
r410: merge tpot's changeset 353 from trunk:
Move msdfs.c into the source/smbd directory and remove source/msdfs.

metze

16 years agor408: - replace (conn->admin_user != True) with (current_user.uid != 0)
Stefan Metzmacher [Thu, 29 Apr 2004 17:19:42 +0000 (17:19 +0000)]
r408: - replace (conn->admin_user != True) with (current_user.uid != 0)
  because someone changed it in all other places too

- fix quotas support from windows explorer
  we now got the unix file name of a fake_file

metze

16 years agor405: Some docs of vfs_full_audit.c as comment :-)
Volker Lendecke [Thu, 29 Apr 2004 13:07:34 +0000 (13:07 +0000)]
r405: Some docs of vfs_full_audit.c as comment :-)

16 years agor404: Revert the change 378 to vfs_extd_audit.c, the parseable auditing
Volker Lendecke [Thu, 29 Apr 2004 12:11:59 +0000 (12:11 +0000)]
r404: Revert the change 378 to vfs_extd_audit.c, the parseable auditing

Implement vfs_full_audit.c that can log every vfs.h operation. So if you
change vfs.h, from now on you also have to change full_audit :-)

Volker

16 years agor403: update version to 3.0.4pre1
Stefan Metzmacher [Thu, 29 Apr 2004 11:18:35 +0000 (11:18 +0000)]
r403: update version to 3.0.4pre1

metze

16 years agor397: BUG 1199: check logfile before writing debug output
Gerald Carter [Thu, 29 Apr 2004 07:21:25 +0000 (07:21 +0000)]
r397: BUG 1199: check logfile before writing debug output

16 years agor395: BUG 1232: patch from landonf@opendarwin.org (Landon Fuller) to fix
Gerald Carter [Wed, 28 Apr 2004 20:07:51 +0000 (20:07 +0000)]
r395: BUG 1232: patch from landonf@opendarwin.org (Landon Fuller) to fix
user/group enumeration on systems whose libc does not call setgrent()
before trying to enumerate users (i.e. FreeBSD 5.2)

16 years agor393: BUG 1141: patch from timur@com.bat.ru (Timur Bakeyev) for nss*.so names on...
Gerald Carter [Wed, 28 Apr 2004 19:18:41 +0000 (19:18 +0000)]
r393: BUG 1141: patch from timur@com.bat.ru (Timur Bakeyev) for nss*.so names on FreeBSD 5.x

16 years agor384: Relicense tdb python module in trunk and 3.0 branch as LGPL since the
Tim Potter [Wed, 28 Apr 2004 10:15:08 +0000 (10:15 +0000)]
r384: Relicense tdb python module in trunk and 3.0 branch as LGPL since the
license on tdb has changed.

16 years agor379: Fix syntax error in example mysql table
Jelmer Vernooij [Tue, 27 Apr 2004 15:26:18 +0000 (15:26 +0000)]
r379: Fix syntax error in example mysql table

16 years agor378: Add an option extd_audit:parseable=True. This gives messages of the form
Volker Lendecke [Tue, 27 Apr 2004 15:14:03 +0000 (15:14 +0000)]
r378: Add an option extd_audit:parseable=True. This gives messages of the form

Apr 27 16:05:59 delphin smbd_audit[14946]: 1011|192.168.234.100|unlink|New Folder/TESTDIR.TMP

where 1011 is the user's uid, 192.168.234.100 is the client IP etc.

Volker

16 years agor376: BUG 1288: resolve any machine netbios name (0x00) and not just servers (0x20)
Gerald Carter [Tue, 27 Apr 2004 13:12:31 +0000 (13:12 +0000)]
r376: BUG 1288: resolve any machine netbios name (0x00) and not just servers (0x20)

16 years agor370: The 'it does never happen -- error on close()' does happen when you exceed
Volker Lendecke [Mon, 26 Apr 2004 13:11:59 +0000 (13:11 +0000)]
r370: The 'it does never happen -- error on close()' does happen when you exceed
your quota on an AFS file system. The specific errno was thrown away by
close_normal_file(). Thus we returned NT_STATUS_UNSUCCESSFUL and not
NT_STATUS_DISK_FULL as we should. Fix that. (Not that this gives more sane
Windows app behaviour.... :-( )

Jerry, jra, could you please look over this one, it's been quite a while since
I touch file server code.

Volker

16 years agor340: fix a segfault in the login_cache code...
Stefan Metzmacher [Fri, 23 Apr 2004 09:54:38 +0000 (09:54 +0000)]
r340: fix a segfault in the login_cache code...

metze

16 years agor333: other half of fix for winbindd crask from gd@suse.de
Gerald Carter [Fri, 23 Apr 2004 01:20:23 +0000 (01:20 +0000)]
r333: other half of fix for winbindd crask from gd@suse.de

16 years agor329: add the shadow_copy vfs module
Stefan Metzmacher [Thu, 22 Apr 2004 15:30:42 +0000 (15:30 +0000)]
r329: add the shadow_copy vfs module

I'll add documentation to the Samba-Howto-Collection

metze

16 years agor319: Fix a segfault in winbind. Thanks to Guenther Deschner for his valgrind log
Volker Lendecke [Wed, 21 Apr 2004 16:15:59 +0000 (16:15 +0000)]
r319: Fix a segfault in winbind. Thanks to Guenther Deschner for his valgrind log
:-)

Volker

16 years agor316: Fix split_domain_name. This defaulted to get_myname() instead of
Volker Lendecke [Wed, 21 Apr 2004 15:04:05 +0000 (15:04 +0000)]
r316: Fix split_domain_name. This defaulted to get_myname() instead of
get_global_sam_name().

Error case: Adding a domain user to a XP local group did a lsalookupname on
the user without domain prefix, and this then failed.

Jerry: This is a must-fix before 3.0.3.

Volker

16 years agor299: updating release notes
Gerald Carter [Tue, 20 Apr 2004 20:29:01 +0000 (20:29 +0000)]
r299: updating release notes

16 years agor296: patch from j.lu -- don't force an upper case domain name in the ntlmssp code
Gerald Carter [Tue, 20 Apr 2004 16:33:30 +0000 (16:33 +0000)]
r296: patch from j.lu -- don't force an upper case domain name in the ntlmssp code

16 years agor294: checking in volker's winbindd patches; tested on domain members (Samba and...
Gerald Carter [Tue, 20 Apr 2004 02:37:49 +0000 (02:37 +0000)]
r294: checking in volker's winbindd patches; tested on domain members (Samba and AD) as well as on a Samba DC

16 years agor293: keeping a single default smb.conf to maintain
Gerald Carter [Tue, 20 Apr 2004 02:32:17 +0000 (02:32 +0000)]
r293: keeping a single default smb.conf to maintain

16 years agor292: removing some outdated files and directories (I love subversion!)
Gerald Carter [Tue, 20 Apr 2004 02:30:43 +0000 (02:30 +0000)]
r292: removing some outdated files and directories (I love subversion!)

16 years agor291: adding printer and driver migration shell script from Kurt Pfeifle
Gerald Carter [Tue, 20 Apr 2004 02:16:25 +0000 (02:16 +0000)]
r291: adding printer and driver migration shell script from Kurt Pfeifle

16 years agor289: BUG 1246 -- fix syntax error
Gerald Carter [Tue, 20 Apr 2004 01:36:04 +0000 (01:36 +0000)]
r289: BUG 1246 -- fix syntax error

16 years agor288: combination of BUG 1081 and patch from J. Klinger -- added remove_duplicate_gid...
Gerald Carter [Tue, 20 Apr 2004 01:24:47 +0000 (01:24 +0000)]
r288: combination of BUG 1081 and patch from J. Klinger -- added remove_duplicate_gids() to smbd and winbindd

16 years agor283: removing --with-cracklib after discussion with abartklet @ sambaXP
Gerald Carter [Mon, 19 Apr 2004 17:05:31 +0000 (17:05 +0000)]
r283: removing --with-cracklib after discussion with abartklet @ sambaXP

16 years agor272: mention net rpc group delete
Volker Lendecke [Sun, 18 Apr 2004 20:24:32 +0000 (20:24 +0000)]
r272: mention net rpc group delete

16 years agor269: Patch from Krischan Jodies <kj@sernet.de>: Implement 'net rpc group delete'.
Volker Lendecke [Sun, 18 Apr 2004 20:22:31 +0000 (20:22 +0000)]
r269: Patch from Krischan Jodies <kj@sernet.de>: Implement 'net rpc group delete'.

Volker

16 years agor252: add backtrace to examples so people know about it (slight change from lars...
Gerald Carter [Fri, 16 Apr 2004 17:49:11 +0000 (17:49 +0000)]
r252: add backtrace to examples so people know about it (slight change from lars @suse)

16 years agor248: Add support for printing out the MAC address on nmblookup.
Richard Sharpe [Fri, 16 Apr 2004 03:57:30 +0000 (03:57 +0000)]
r248: Add support for printing out the MAC address on nmblookup.

16 years agor247: Fixup a couple of debug messages.
Jeremy Allison [Thu, 15 Apr 2004 23:08:41 +0000 (23:08 +0000)]
r247: Fixup a couple of debug messages.
Jeremy.

16 years agor242: adding 'cups options' parameter to allow raw printing without changing /etc...
Gerald Carter [Thu, 15 Apr 2004 20:40:26 +0000 (20:40 +0000)]
r242: adding 'cups options' parameter to allow raw printing without changing /etc/cups/cupsd.conf -- documentation to follow

16 years agor240: I'm pretty happy with the 'ntlm-server-1' helper protocol now, and as
Andrew Bartlett [Thu, 15 Apr 2004 17:31:02 +0000 (17:31 +0000)]
r240: I'm pretty happy with the 'ntlm-server-1' helper protocol now, and as
there is now a public patch that uses it, make it always available.

(It was #ifdef DEVELOPER)

Andrew Bartlett

16 years agor238: Fix memleak
Volker Lendecke [Thu, 15 Apr 2004 15:59:59 +0000 (15:59 +0000)]
r238: Fix memleak

16 years agor229: Don't list domain groups from BUILTIN.
Volker Lendecke [Thu, 15 Apr 2004 09:07:32 +0000 (09:07 +0000)]
r229: Don't list domain groups from BUILTIN.

Volker

16 years agor227: Patch from James Peach <jpeach@sgi.com> to search RIX ABI paths for libiconv.
Jeremy Allison [Wed, 14 Apr 2004 23:31:03 +0000 (23:31 +0000)]
r227: Patch from James Peach <jpeach@sgi.com> to search RIX ABI paths for libiconv.
Based on inital fix from Jason Mader.
Jeremy.

16 years agor225: Patch from Pat.Hayward@propero.net to make the session_users list dynamic.
Jeremy Allison [Wed, 14 Apr 2004 22:35:28 +0000 (22:35 +0000)]
r225: Patch from Pat.Hayward@propero.net to make the session_users list dynamic.
I restricted it to 128k max to prevent DOS attacks.
Jeremy.

16 years agor223: According to Thomas Mueller, thomas.mueller@christ-wasser.de, the two lines
Volker Lendecke [Wed, 14 Apr 2004 20:44:26 +0000 (20:44 +0000)]
r223: According to Thomas Mueller, thomas.mueller@christ-wasser.de, the two lines
removed (modifiersName and modifyTimestamp) lead to warnings upon startup of
the netscape directory server. I can't check this, but it sounds logical.

Thanks,

Volker

16 years agor221: Remainder of bug 1208. We do not remove creds from _any_ FILE ccache,
Jim McDonough [Wed, 14 Apr 2004 19:06:45 +0000 (19:06 +0000)]
r221: Remainder of bug 1208.  We do not remove creds from _any_ FILE ccache,
because not only does it not work on Heimdal, but also since ccaches
created within samba are memory-based, so we shouldn't touch a
FILE-based one (it was probably created via kinit or similar).

16 years agor219: Obtain new tickets if current ones are expired. Next part of fix for
Jim McDonough [Wed, 14 Apr 2004 17:34:48 +0000 (17:34 +0000)]
r219: Obtain new tickets if current ones are expired.  Next part of fix for
bug 1208. Based on a fix from Guether Deschener.

Outstanding pieces:
- Heimdal FILE-based ccaches don't actually remove creds properly, so we
  need to code a check for this
- what if ticket expires between our check and when we use it?

Guenther has coded up fixes for these parts, but I still need
to review them, as I'm not totally comfortable with the solutions.

16 years agor215: merge over svk fixes from 4_0
Stefan Metzmacher [Wed, 14 Apr 2004 15:17:34 +0000 (15:17 +0000)]
r215: merge over svk fixes from 4_0

metze

16 years agor208: merge the version schema changes from 4_0
Stefan Metzmacher [Wed, 14 Apr 2004 08:47:53 +0000 (08:47 +0000)]
r208: merge the version schema changes from 4_0

metze

16 years agor201: Fix bugs in the --helper-protocol=ntlm-server-1 implementation.
Andrew Bartlett [Tue, 13 Apr 2004 20:57:26 +0000 (20:57 +0000)]
r201: Fix bugs in the --helper-protocol=ntlm-server-1 implementation.

(allow the use of base64 encoded strings, LM or NT passwords)

Andrew Bartlett

16 years agor197: mistaken merge from trunk
Gerald Carter [Tue, 13 Apr 2004 14:52:13 +0000 (14:52 +0000)]
r197: mistaken merge from trunk

16 years agor196: merging struct uuid from trunk
Gerald Carter [Tue, 13 Apr 2004 14:39:48 +0000 (14:39 +0000)]
r196: merging struct uuid from trunk

16 years agor195: adding files to ignore list
Gerald Carter [Tue, 13 Apr 2004 14:38:52 +0000 (14:38 +0000)]
r195: adding files to ignore list

16 years agor192: Fix configure.in to only use $BLDSHARED to select whether to build static or...
Paul Green [Tue, 13 Apr 2004 12:28:38 +0000 (12:28 +0000)]
r192: Fix configure.in to only use $BLDSHARED to select whether to build static or shared libraries.

16 years agor191: Only send the ntlm_auth 'ntlm-server-1' helper client a '.' after the
Andrew Bartlett [Tue, 13 Apr 2004 08:58:02 +0000 (08:58 +0000)]
r191: Only send the ntlm_auth 'ntlm-server-1' helper client a '.' after the
server had said something (such as an error).

Andrew Bartlett

16 years agor188: Add a new 'helper protocol' to ntlm_auth.
Andrew Bartlett [Mon, 12 Apr 2004 20:46:13 +0000 (20:46 +0000)]
r188: Add a new 'helper protocol' to ntlm_auth.

This protocol looks rather like SMTP headers/LDAP:

NT-Domain: TESTWG
Username: abartlet
...

Password: foo

Challenge-response passwords are in hexideciaml, while any 'plain'
string can be base64 encoded when like this:

Password:: Zm9vCg==

(the :: indicates it, just like LDAP - I hope)

The protocol is not final, so it is #ifdef DEVELOPER for now (so
nobody starts to rely on it until I'm happy), but we may as well get
this into subversion.

My intention is to use this to power the next version of my
PPP/ntlm_auth plugin, and hopefully entice a FreeRadius plugin out of
the woods.

Andrew Bartlett

16 years agor185: fix linking prob surrounding --with-fake-kaserver and -lcrypto
Gerald Carter [Mon, 12 Apr 2004 19:00:54 +0000 (19:00 +0000)]
r185: fix linking prob surrounding --with-fake-kaserver and -lcrypto

16 years agor177: Split ntlm_auth --diagnostics into a seperate file, so as not to clutter
Andrew Bartlett [Mon, 12 Apr 2004 14:19:48 +0000 (14:19 +0000)]
r177: Split ntlm_auth --diagnostics into a seperate file, so as not to clutter
the main ntlm_auth program.

It quite possibly should belong in smbtorture, but relies on the
winbind client for now.

Andrew Bartlett

16 years agor176: Improve our fallback code for password changes - this would be better
Andrew Bartlett [Mon, 12 Apr 2004 11:18:32 +0000 (11:18 +0000)]
r176: Improve our fallback code for password changes - this would be better
with more correct NTLMSSP support in client and server, but it will do
for now.

Also implement LANMAN password only in the classical session setup code, but
#ifdef'ed out.  In Samba4, I'll make this run-time so we can torture it.

Lanman passwords over 14 dos characters long could be considered
'invalid' (they are truncated) - so SMBencrypt now returns 'False' if
it generates such a password.

Andrew Bartlett

16 years agor175: Move this comment to the right place...
Andrew Bartlett [Mon, 12 Apr 2004 11:15:14 +0000 (11:15 +0000)]
r175: Move this comment to the right place...

Andrew Bartlett

16 years agor171: Continue the 'rename nt_session_key' work. This attempts to rename
Andrew Bartlett [Mon, 12 Apr 2004 10:17:48 +0000 (10:17 +0000)]
r171: Continue the 'rename nt_session_key' work.  This attempts to rename
this variable to 'user_session_key', where possible.  The command line
parameter is currently unchanged).

Andrew Bartlett

16 years agor160: Fix msdfs proxy. Could others please also test this, this code is soo
Volker Lendecke [Sun, 11 Apr 2004 10:33:05 +0000 (10:33 +0000)]
r160: Fix msdfs proxy. Could others please also test this, this code is soo
cluttered. I've tested with w2k and xp with msdfs proxy and normal msdfs root,
but I would like others to also look at the code.

Thanks,

Volker

16 years agor155: real for for BUG 761 -- allow printing parameter to set defaults on a per share...
Gerald Carter [Sat, 10 Apr 2004 22:37:47 +0000 (22:37 +0000)]
r155: real for for BUG 761 -- allow printing parameter to set defaults on a per share basis

16 years agor153: Fix memleak
Volker Lendecke [Sat, 10 Apr 2004 21:38:05 +0000 (21:38 +0000)]
r153: Fix memleak

16 years agor150: Make 3.x pass the Samba 4.x RAW-SEARCH tests - except for the
Jeremy Allison [Sat, 10 Apr 2004 20:02:46 +0000 (20:02 +0000)]
r150: Make 3.x pass the Samba 4.x RAW-SEARCH tests - except for the
UNIX info levels, and the short case preserve names. Tested
with NT - needs more testing. Will work on this more on Monday.
Jeremy.

16 years agor148: Ensure we do not dereference a null pointer when we return the user
Andrew Bartlett [Sat, 10 Apr 2004 19:24:31 +0000 (19:24 +0000)]
r148: Ensure we do not dereference a null pointer when we return the user
session key.

16 years agor145: pdb_create_alias now returns NTSTATUS. More of this to follow.
Volker Lendecke [Sat, 10 Apr 2004 16:09:48 +0000 (16:09 +0000)]
r145: pdb_create_alias now returns NTSTATUS. More of this to follow.

Volker

16 years agor144: Move first use of AC_CHECK_HEADERS so it is always executed. Tidy up indendation.
Paul Green [Sat, 10 Apr 2004 14:26:19 +0000 (14:26 +0000)]
r144: Move first use of AC_CHECK_HEADERS so it is always executed. Tidy up indendation.

16 years agor139: Apply some const
Volker Lendecke [Sat, 10 Apr 2004 06:03:55 +0000 (06:03 +0000)]
r139: Apply some const

16 years agor119: missed a file in volker patch
Gerald Carter [Wed, 7 Apr 2004 12:49:36 +0000 (12:49 +0000)]
r119: missed a file in volker patch

16 years agor118: adding some recent checkins to commit list
Gerald Carter [Wed, 7 Apr 2004 12:48:55 +0000 (12:48 +0000)]
r118: adding some recent checkins to commit list

16 years agor116: volker's patch for local group and group nesting
Gerald Carter [Wed, 7 Apr 2004 12:43:44 +0000 (12:43 +0000)]
r116: volker's patch for local group and group nesting

16 years agor115: finally checking in tridge's winbindd_schannel patch for connections
Gerald Carter [Wed, 7 Apr 2004 12:42:03 +0000 (12:42 +0000)]
r115: finally checking in tridge's winbindd_schannel patch for connections

16 years agor104: Fix ntlm_auth by adding the new strhex_to_data_blob() call.
Andrew Bartlett [Wed, 7 Apr 2004 09:27:50 +0000 (09:27 +0000)]
r104: Fix ntlm_auth by adding the new strhex_to_data_blob() call.

Andrew Bartlett

16 years agor96: Stupid f&%'n UNIX extensions.... SETPATHINFO
Jeremy Allison [Tue, 6 Apr 2004 23:01:09 +0000 (23:01 +0000)]
r96: Stupid f&%'n UNIX extensions.... SETPATHINFO
normally takes as it's param entry the filename to
be acted upon.... Unless it's UNIX extensions create
hardlink, or UNIX extensions create symlink. Then it's
param -> newfile name
data -> oldfile name.
This caused me to stuff them up in 3.0.2 (and the
client commands link and symlink). Fixed them, everything
is now called oldname and newname - thus specifying which
name should already exist (hint - the old one...) and which
will be created (newname).
Jeremy.

16 years agor93: Update VOS _POSIX_C_SOURCE macro to 200112L.
Paul Green [Tue, 6 Apr 2004 22:12:21 +0000 (22:12 +0000)]
r93: Update VOS _POSIX_C_SOURCE macro to 200112L.

16 years agor91: Fix lsalookupnames. Previously we'd fail if we didn't find the name, but
Jim McDonough [Tue, 6 Apr 2004 22:02:47 +0000 (22:02 +0000)]
r91: Fix lsalookupnames.  Previously we'd fail if we didn't find the name, but
we never checked if it was a domain user and didn't find a local one.

16 years agor88: Add missing guest mount option for mount.cifs
Steve French [Tue, 6 Apr 2004 21:56:59 +0000 (21:56 +0000)]
r88: Add missing guest mount option for mount.cifs

16 years agor87: Fix the build that Andrew Bartlett broke. Andrew - don't check *ANYTHING* in
Jeremy Allison [Tue, 6 Apr 2004 21:13:53 +0000 (21:13 +0000)]
r87: Fix the build that Andrew Bartlett broke. Andrew - don't check *ANYTHING* in
unless you have done a make clean; make.
Jeremy.

16 years agor86: This function was moved to lib/nterr.h
Andrew Bartlett [Tue, 6 Apr 2004 16:49:09 +0000 (16:49 +0000)]
r86: This function was moved to lib/nterr.h

Andrew Bartlett

16 years agor85: Update the winbind interface version, as I just extended the struct.
Andrew Bartlett [Tue, 6 Apr 2004 16:45:38 +0000 (16:45 +0000)]
r85: Update the winbind interface version, as I just extended the struct.

Andrew Bartlett

16 years agor84: Implement --required-membership-of=, an ntlm_auth option that restricts
Andrew Bartlett [Tue, 6 Apr 2004 16:44:24 +0000 (16:44 +0000)]
r84: Implement --required-membership-of=, an ntlm_auth option that restricts
all authentication to members of this particular group.

Also implement an option to allow ntlm_auth to get 'squashed' error codes,
which are safer to communicate to remote network clients.

Andrew Bartlett

16 years agor81: Make EA's case independent - fix smbtorture to test for this.
Jeremy Allison [Tue, 6 Apr 2004 14:24:13 +0000 (14:24 +0000)]
r81: Make EA's case independent - fix smbtorture to test for this.
Jeremy.

16 years agor77: Fix path canonicalization of the mount target path and help text display in...
Steve French [Tue, 6 Apr 2004 12:57:41 +0000 (12:57 +0000)]
r77: Fix path canonicalization of the mount target path and help text display in the cifs mount helper

16 years agor76: Fix smbfs problem with Tree Disconnect issued before smbfs starts its work.
Alexander Bokovoy [Tue, 6 Apr 2004 11:45:02 +0000 (11:45 +0000)]
r76: Fix smbfs problem with Tree Disconnect issued before smbfs starts its work.
We use cli_state.smb_rw_error to pass this specific case into cli_close_connection()
from smbmount as smb_rw_error can have only selected number of states and
it is ignored in cli_close_connection().

Compiled and tested by Lars Mueller from SuSE on x86, x86_64, ppc, ppc64, s390 and
s390x.

16 years agor75: patch from Cal Heldenbrand <calzplace@yahoo.com> for 'pam_smbpass migrate'
Gerald Carter [Tue, 6 Apr 2004 11:27:59 +0000 (11:27 +0000)]
r75: patch from Cal Heldenbrand <calzplace@yahoo.com> for 'pam_smbpass migrate'

16 years agor73: bumping version to 3.0.3pre3
Gerald Carter [Tue, 6 Apr 2004 09:27:43 +0000 (09:27 +0000)]
r73: bumping version to 3.0.3pre3

16 years agor69: Global rename of 'nt_session_key' -> 'user_session_key'. The session key could
Andrew Bartlett [Tue, 6 Apr 2004 08:11:16 +0000 (08:11 +0000)]
r69: Global rename of 'nt_session_key' -> 'user_session_key'.  The session key could
be anything, and may not be based on anything 'NT'.  This is also what microsoft
calls it.

16 years agor63: Remove -lcrypto from wbinfo. Sorry.
Volker Lendecke [Tue, 6 Apr 2004 06:22:59 +0000 (06:22 +0000)]
r63: Remove -lcrypto from wbinfo. Sorry.

Volker

16 years agor59: revert session key problem
Andrew Tridgell [Mon, 5 Apr 2004 16:57:40 +0000 (16:57 +0000)]
r59: revert session key problem

16 years agor53: Remove modifyTimestamp from list of our attributes. We just check it for
Jim McDonough [Mon, 5 Apr 2004 14:45:24 +0000 (14:45 +0000)]
r53: Remove modifyTimestamp from list of our attributes.  We just check it for
cache entry time comparisons in password lockout.  Fixes problems where
pdb_ldap tries to delete the operational attribute modifyTimestamp when
deleting a user account.

16 years agor50: Fix bug 1139 as per fix suggested by jdev@panix.com,
Jeremy Allison [Mon, 5 Apr 2004 14:27:48 +0000 (14:27 +0000)]
r50: Fix bug 1139 as per fix suggested by jdev@panix.com,
swap lookups for user and group - group will do an
algorithmic lookup if it fails, user won't.
Jeremy.

16 years agor49: Support SMB signing on connections using only the
Andrew Bartlett [Mon, 5 Apr 2004 14:27:23 +0000 (14:27 +0000)]
r49: Support SMB signing on connections using only the
LANMAN password.  This also corrects the 'session key'
for these connections.

16 years agor48: Fix types for debug message parameters.
Jeremy Allison [Mon, 5 Apr 2004 13:55:39 +0000 (13:55 +0000)]
r48: Fix types for debug message parameters.
Jeremy.

16 years agor39: * importing .cvsignore files
Gerald Carter [Mon, 5 Apr 2004 12:19:50 +0000 (12:19 +0000)]
r39: * importing .cvsignore files
* updateing WHATSNEW with vl's change

16 years agor38: Fix caching of name->sid lookups
Volker Lendecke [Mon, 5 Apr 2004 12:14:31 +0000 (12:14 +0000)]
r38: Fix caching of name->sid lookups

Volker

16 years agor22: release notes for 3.0.3pre2
Gerald Carter [Mon, 5 Apr 2004 08:43:35 +0000 (08:43 +0000)]
r22: release notes for 3.0.3pre2

16 years agor21: Ensure 'net' follows the behaviour of all other samba client tools,
Andrew Bartlett [Mon, 5 Apr 2004 08:31:58 +0000 (08:31 +0000)]
r21: Ensure 'net' follows the behaviour of all other samba client tools,
and honours the 'netbios name' in the smb.conf.

16 years agor18: Fix free of incremented pointer
Steve French [Sun, 4 Apr 2004 15:20:46 +0000 (15:20 +0000)]
r18: Fix free of incremented pointer