]> git.ipfire.org Git - thirdparty/samba.git/log
thirdparty/samba.git
22 years agoFix spelling mistake.
Tim Potter [Fri, 31 Oct 2003 02:57:02 +0000 (02:57 +0000)] 
Fix spelling mistake.

22 years agoMerge from 3.0:
Tim Potter [Fri, 31 Oct 2003 02:56:11 +0000 (02:56 +0000)] 
Merge from 3.0:

  Revision 1.45.2.23:

    Changed output so all debug output goes to stderr, and all file processing
    goes to stdout.

    Note: This change permits use of testparm processing of smb.conf to be
    redirected into a file that can be used as an smb.conf file. ie: All
    information that should not be in smb.conf will be on stderr, all pertinent
    smb.conf info will go to stdout.

    Example of use:
A fully documented smb.conf.master file can be maintained.
To create smb.conf do:
testparm -s > smb.conf

22 years agoFix some unused variable warnings.
Tim Potter [Fri, 31 Oct 2003 02:53:07 +0000 (02:53 +0000)] 
Fix some unused variable warnings.

22 years agoMerge from 3.0:
Tim Potter [Fri, 31 Oct 2003 01:42:21 +0000 (01:42 +0000)] 
Merge from 3.0:

  Revision 1.2.2.5:

    Remove some unused variables uncovered by the build farm.

22 years agoSync up with 3.0
Tim Potter [Fri, 31 Oct 2003 01:35:02 +0000 (01:35 +0000)] 
Sync up with 3.0

22 years agoSync up some indentation.
Tim Potter [Fri, 31 Oct 2003 01:31:31 +0000 (01:31 +0000)] 
Sync up some indentation.

22 years agoMerge from 3.0: Sync up comments.
Tim Potter [Fri, 31 Oct 2003 01:18:41 +0000 (01:18 +0000)] 
Merge from 3.0: Sync up comments.

22 years agoMerge of some fixes from 3.0:
Tim Potter [Fri, 31 Oct 2003 01:17:37 +0000 (01:17 +0000)] 
Merge of some fixes from 3.0:

  - Revision 1.468.2.187

      CP* modules are not related to development

  - Revision 1.468.2.191

      Compile fix for tdbbackup when Samba needs to override non-C99
      compliant implementations of snprintf

Sync up formatting for PAM_WINBIND_PICOBJ variable.

22 years agoAdd string to uuid fn. Thanks aliguori.
Jim McDonough [Thu, 30 Oct 2003 23:43:18 +0000 (23:43 +0000)] 
Add string to uuid fn.  Thanks aliguori.

22 years agoIf nothing to do, return success. Fix from Aur?lien Degr?mont <adegremont@idealx...
Jeremy Allison [Thu, 30 Oct 2003 20:09:44 +0000 (20:09 +0000)] 
If nothing to do, return success. Fix from Aur?lien Degr?mont <adegremont@idealx.com>
Jeremy.

22 years agoLast of the GUID->struct uuid changes.
Jim McDonough [Thu, 30 Oct 2003 18:13:25 +0000 (18:13 +0000)] 
Last of the GUID->struct uuid changes.

GUID has been removed.  If you are dealing with a flattened version of a
[gu]uid, use UUID_FLAT.  smb_pack_uuid and smb_unpack_uuid will switch
between the two.

I'm not sure exactly what the genparse stuff is doing here, so I just
switched it to a UUID_FLAT (no functional change), but I suspect this
may not be the right way to go.

22 years agoNearing the end of the GUID -> struct uuid changes.
Jim McDonough [Thu, 30 Oct 2003 17:50:56 +0000 (17:50 +0000)] 
Nearing the end of the GUID -> struct uuid changes.

22 years agoOk, nearing the end of the GUID->struct uuid changes.
Jim McDonough [Thu, 30 Oct 2003 17:37:21 +0000 (17:37 +0000)] 
Ok, nearing the end of the GUID->struct uuid changes.

Takes care of secdescs.

Had to move the uuid marshall/unmarshalling code to parse_misc, because
it's needed outside of parse_rpc.c (for no-auth calls)

22 years agoMore GUID->struct uuid changes.
Jim McDonough [Thu, 30 Oct 2003 17:17:51 +0000 (17:17 +0000)] 
More GUID->struct uuid changes.

Printer publishing now uses struct uuid.  Also changes ads_pull_guid to
unpack it from the wire format.

22 years agoAnother round of GUID->struct uuid.
Jim McDonough [Thu, 30 Oct 2003 17:07:32 +0000 (17:07 +0000)] 
Another round of GUID->struct uuid.

Takes care of the lsass pipe

22 years agoFirst round of merging various UUID structures.
Jim McDonough [Thu, 30 Oct 2003 16:38:39 +0000 (16:38 +0000)] 
First round of merging various UUID structures.

This eliminates RPC_UUID.  It creates the following struct:

struct uuid
{
  uint32 time_low;
  uint16 time_mid;
  uint16 time_hi_and_version;
  uint8  clock_seq[2];
  uint8  node[6];
};
which replaces RPC_UUID and various random struct uuid definitions

and a flat version:
#define UUID_FLAT_SIZE 16
typedef struct uuid_flat
{
uint8 info[UUID_FLAT_SIZE];
} UUID_FLAT;

which pretty much looks like GUID (which I will start eliminating).

I want us to use the FLAT one only on the wire (perhaps in files, too?), and
I want it to be obvious to the coder that it is the FLAT version.

This leaves a couple of compiler warnings, where GUID isn't completely
replaced by FLAT_UUID yet...I'll get to those soon.

22 years agobug 696; check for an invalid fid before dereferencing the fsp pointer
Gerald Carter [Thu, 30 Oct 2003 16:01:02 +0000 (16:01 +0000)] 
bug 696; check for an invalid fid before dereferencing the fsp pointer

22 years agoCheck for nsswitch.h. Patch from albert chin (china@thewrittenword.com).
Jeremy Allison [Thu, 30 Oct 2003 00:07:46 +0000 (00:07 +0000)] 
Check for nsswitch.h. Patch from albert chin (china@thewrittenword.com).
Jeremy.

22 years agoJanitor for tridge.
Jeremy Allison [Wed, 29 Oct 2003 23:01:02 +0000 (23:01 +0000)] 
Janitor for tridge.
parameterise the listen backlog in smbd and make it larger by default. A backlog of 5 is way too small these days.
Jeremy.

22 years agoFixes to check for wraps which could cause coredumps.
Jeremy Allison [Wed, 29 Oct 2003 21:27:57 +0000 (21:27 +0000)] 
Fixes to check for wraps which could cause coredumps.
Jeremy.

22 years agoDon't log at level zero when chdir fails. Ensure correct error message is returned.
Jeremy Allison [Tue, 28 Oct 2003 18:32:01 +0000 (18:32 +0000)] 
Don't log at level zero when chdir fails. Ensure correct error message is returned.
Jeremy.

22 years agoFix for bug #667. DFS filenames can now have arbitrary case.
Jeremy Allison [Tue, 28 Oct 2003 00:51:19 +0000 (00:51 +0000)] 
Fix for bug #667. DFS filenames can now have arbitrary case.
Jeremy.

22 years agoRemove trailing comma on typedef enum. albert chin (china@thewrittenword.com)
Tim Potter [Mon, 27 Oct 2003 23:42:38 +0000 (23:42 +0000)] 
Remove trailing comma on typedef enum.  albert chin (china@thewrittenword.com)

22 years agoMissing UNIX -> DOS codepage conversion. Fix from Alexander Bokovoy <a.bokovoy@sam...
Jeremy Allison [Mon, 27 Oct 2003 20:09:12 +0000 (20:09 +0000)] 
Missing UNIX -> DOS codepage conversion. Fix from Alexander Bokovoy <a.bokovoy@sam-solutions.net>.
Jeremy.

22 years agoJanitorial duty for tpot. Merge tdb error log fix.
Jeremy Allison [Fri, 24 Oct 2003 17:50:19 +0000 (17:50 +0000)] 
Janitorial duty for tpot. Merge tdb error log fix.
Jeremy.

22 years agoAdd shutdown abort try over initshutdown pipe first, then fall back to
Jim McDonough [Fri, 24 Oct 2003 14:03:15 +0000 (14:03 +0000)] 
Add shutdown abort try over initshutdown pipe first, then fall back to
winreg pipe if it doesn't work.  Fixes bug #534.

I will go back and add the same logic for the shutdown itself, even though
that works so far against win2k (haven't tested all win clients).

22 years agoAdd initshutdown pipe commands to rpcclient. Second part of fix to bug
Jim McDonough [Fri, 24 Oct 2003 13:49:25 +0000 (13:49 +0000)] 
Add initshutdown pipe commands to rpcclient.  Second part of fix to bug
#534

22 years agoNew files for support of initshutdown pipe. Win2k doesn't respond properly
Jim McDonough [Fri, 24 Oct 2003 13:38:13 +0000 (13:38 +0000)] 
New files for support of initshutdown pipe.  Win2k doesn't respond properly
to all requests on the winreg pipe, so we need to handle this new pipe.

First part of fix for bug #534

22 years agoCheck for va_copy before you check for __va_copy, since va_copy is the
Richard Sharpe [Fri, 24 Oct 2003 05:47:39 +0000 (05:47 +0000)] 
Check for va_copy before you check for __va_copy, since va_copy is the
actual standard, and __va_copy was the proposed standard.

22 years agoAndrew Bartlett patch to cope with Exchange 5.5 cleartext pop password auth.
Jeremy Allison [Fri, 24 Oct 2003 01:19:23 +0000 (01:19 +0000)] 
Andrew Bartlett patch to cope with Exchange 5.5 cleartext pop password auth.
Jeremy.

22 years agoMerge from 3_0:
Volker Lendecke [Thu, 23 Oct 2003 16:51:08 +0000 (16:51 +0000)] 
Merge from 3_0:

After a phonecall with jra finally commit this.

This changes our behaviour when the setresuid call is available. We now not
only change the effective uid but also the real uid when becoming
unprivileged. This is mainly for improved AFS compatibility, as AFS selects
the token to send to the server based on the real uid of the process.

I tested this with a W2k server with two non-root 'runas' sessions. They come
in via a single smbd as two different users using two session setups. Samba on
Linux can still switch between the two uids, proved by two different files
created via those sessions.

Volker

22 years agoFix bug 451. Stop net -P from prompting for machine account password.
Jim McDonough [Thu, 23 Oct 2003 14:33:21 +0000 (14:33 +0000)] 
Fix bug 451.  Stop net -P from prompting for machine account password.
Based on work by Ken Cross (kcross@nssolutions.com).

22 years agoVolker's fix for bug #668. Change the \n after the password prompt to go
Jim McDonough [Thu, 23 Oct 2003 13:47:21 +0000 (13:47 +0000)] 
Volker's fix for bug #668.  Change the \n after the password prompt to go
to tty instead of stdout.

22 years agoMerge from 3_0:
Volker Lendecke [Thu, 23 Oct 2003 13:46:32 +0000 (13:46 +0000)] 
Merge from 3_0:

According to Ethereal we have a 32-Bit quantity here. And with SSVAL valgrind
reports an unitialized read which is obviously correct. And I hate valgrind
errors ;-)

Volker

22 years agoApply the changes to libsmbclient that derrell has contributed. Fix some
Richard Sharpe [Thu, 23 Oct 2003 06:35:45 +0000 (06:35 +0000)] 
Apply the changes to libsmbclient that derrell has contributed. Fix some
of the problems with this.

From: Derrell.Lipman@unwireduniverse.com

22 years agoPut strcasecmp/strncasecmp on the banned list (except for needed calls
Jeremy Allison [Wed, 22 Oct 2003 23:38:18 +0000 (23:38 +0000)] 
Put strcasecmp/strncasecmp on the banned list (except for needed calls
in iconv.c and nsswitch/). Using them means you're not thinking about multibyte at
all and I really want to discourage that.
Jeremy.

22 years agoBe sure referent ID is updated for incoming structures, too.
Jim McDonough [Wed, 22 Oct 2003 20:59:46 +0000 (20:59 +0000)] 
Be sure referent ID is updated for incoming structures, too.

22 years agoFix segfault in mount.cifs helper when there is no options specified during mount
Alexander Bokovoy [Wed, 22 Oct 2003 15:52:36 +0000 (15:52 +0000)] 
Fix segfault in mount.cifs helper when there is no options specified during mount

22 years agoMerge from 3_0:
Volker Lendecke [Wed, 22 Oct 2003 07:31:17 +0000 (07:31 +0000)] 
Merge from 3_0:

In cli_lsa_lookup_sids don't leave the domain field uninitialized if
some sid could not be mapped. Otherwise this call is unnecessarily
complicated to call.

Volker

22 years agoFix for bug #64, Win9x Nexus tools not working against Samba3.0. Missing
Jeremy Allison [Tue, 21 Oct 2003 23:14:39 +0000 (23:14 +0000)] 
Fix for bug #64, Win9x Nexus tools not working against Samba3.0. Missing
map in errormap for ERROR_MORE_DATA -> ERRDOS, ERRmoredata.
Jeremy.

22 years agoPatch from Stefan Metzmacher <metze@metzemix.de> to fix signing problems
Jeremy Allison [Tue, 21 Oct 2003 21:18:58 +0000 (21:18 +0000)] 
Patch from Stefan Metzmacher <metze@metzemix.de> to fix signing problems
when reverse connecting back to a client for printer notify.
Jeremy.

22 years agoMerge tridge's AIX fixes.
Jeremy Allison [Tue, 21 Oct 2003 20:17:42 +0000 (20:17 +0000)] 
Merge tridge's AIX fixes.
Jeremy.

22 years agoAdd server side support for epmapper pipe. Currently only does a fixed
Jim McDonough [Tue, 21 Oct 2003 17:59:08 +0000 (17:59 +0000)] 
Add server side support for epmapper pipe.  Currently only does a fixed
mapping, but this is the base for changes to come.

22 years agoFix signing miss-sequence noticed by Stefan Metzmacher <metze@metzemix.de>
Jeremy Allison [Tue, 21 Oct 2003 17:40:48 +0000 (17:40 +0000)] 
Fix signing miss-sequence noticed by Stefan Metzmacher <metze@metzemix.de>
Jeremy.

22 years agoFix typo
Jim McDonough [Tue, 21 Oct 2003 16:27:46 +0000 (16:27 +0000)] 
Fix typo

22 years agocall initgroups before becomming the user; patch from Fabio Cecchi
Gerald Carter [Tue, 21 Oct 2003 14:20:02 +0000 (14:20 +0000)] 
call initgroups before becomming the user; patch from Fabio Cecchi

22 years agoMerge of another fix from Monyo.
Tim Potter [Tue, 21 Oct 2003 04:54:20 +0000 (04:54 +0000)] 
Merge of another fix from Monyo.

22 years agoMerge of mmap blacklist fix from HEAD.
Tim Potter [Tue, 21 Oct 2003 04:46:23 +0000 (04:46 +0000)] 
Merge of mmap blacklist fix from HEAD.

22 years agoMerge of krb5_keytab entry key vs keyblock member check from HEAD.
Tim Potter [Tue, 21 Oct 2003 04:45:33 +0000 (04:45 +0000)] 
Merge of krb5_keytab entry key vs keyblock member check from HEAD.

22 years agoMerge of wrepld link fix.
Tim Potter [Tue, 21 Oct 2003 04:43:48 +0000 (04:43 +0000)] 
Merge of wrepld link fix.

22 years agoUpdate structures after ethereal showed some marshalling/unmarshalling
Jim McDonough [Mon, 20 Oct 2003 21:10:18 +0000 (21:10 +0000)] 
Update structures after ethereal showed some marshalling/unmarshalling
errors.

22 years agoFixed typo spotted by Daniel Jarboe <daniel.jarboe@custserv.com>.
Jeremy Allison [Mon, 20 Oct 2003 21:02:05 +0000 (21:02 +0000)] 
Fixed typo spotted by Daniel Jarboe <daniel.jarboe@custserv.com>.
Jeremy.

22 years agoMerge Volker's fix.
Jeremy Allison [Mon, 20 Oct 2003 19:04:06 +0000 (19:04 +0000)] 
Merge Volker's fix.

It's a perfectly valid condition to have zero alias members.

Jeremy.

22 years agoMerge Volker's fix.
Jeremy Allison [Mon, 20 Oct 2003 19:02:04 +0000 (19:02 +0000)] 
Merge Volker's fix.

We are doing NT error codes now.... If we have an NT error, report that
back the same way we handle the DOS error. Although I don't see why
BUFFER_TOO_SMALL should not be handled as an error, simply copy the logic.

This is only called from smbcacls and smbcquotas.

Jeremy.

22 years agoSeveral updates:
Jim McDonough [Mon, 20 Oct 2003 18:35:12 +0000 (18:35 +0000)] 
Several updates:
- add support for named pipe and netbios queries in parse code
- fix map request structure...unknown byte was alignment
- add sample of named pipe over netbios query in rpcclient (comment only)

22 years agoMerge tridge's tdb updates.
Jeremy Allison [Mon, 20 Oct 2003 18:05:22 +0000 (18:05 +0000)] 
Merge tridge's tdb updates.
Jeremy.

22 years agomore 2.2.x compatibility fixes - allow user looksup in the kerb5
Gerald Carter [Mon, 20 Oct 2003 16:50:14 +0000 (16:50 +0000)] 
more 2.2.x compatibility fixes - allow user looksup in the kerb5
sesssetup to fall back to 'user' instaed of failing is REA.LM\user
doesn't exist.

also fix include line in smb_acls.h as requested by metze

22 years agomake sure we have a devmode before copying a string to the devicename; patch from...
Gerald Carter [Mon, 20 Oct 2003 14:02:58 +0000 (14:02 +0000)] 
make sure we have a devmode before copying a string to the devicename; patch from metze

22 years agoCompile libsmbclient with DYNEXP
Jelmer Vernooij [Sun, 19 Oct 2003 23:30:09 +0000 (23:30 +0000)] 
Compile libsmbclient with DYNEXP

22 years agoAdd epmapper commands to rpcclient
Jim McDonough [Sat, 18 Oct 2003 01:14:41 +0000 (01:14 +0000)] 
Add epmapper commands to rpcclient

22 years agoAdd epmapper client files to rpcclient build
Jim McDonough [Sat, 18 Oct 2003 01:14:25 +0000 (01:14 +0000)] 
Add epmapper client files to rpcclient build

22 years agoAdd client side code to do endpoint map queries. Currently does one
Jim McDonough [Sat, 18 Oct 2003 01:13:01 +0000 (01:13 +0000)] 
Add client side code to do endpoint map queries.  Currently does one
fixed query.  Updates to come soon.

22 years agoFix tower length calculations and add some const
Jim McDonough [Sat, 18 Oct 2003 01:07:37 +0000 (01:07 +0000)] 
Fix tower length calculations and add some const

22 years agoTypo broke win9x logins.
Jeremy Allison [Fri, 17 Oct 2003 21:19:17 +0000 (21:19 +0000)] 
Typo broke win9x logins.
Jeremy.

22 years agouuid itself might not be aligned (as is the case in epm map requests), so
Jim McDonough [Fri, 17 Oct 2003 19:47:06 +0000 (19:47 +0000)] 
uuid itself might not be aligned (as is the case in epm map requests), so
it needs to be aligned outside the smb_io_rpc_uuid() call if a specific
rpc or struct needs it that way.

22 years ago* fix some compile warnings in the gums code
Gerald Carter [Fri, 17 Oct 2003 16:27:26 +0000 (16:27 +0000)] 
* fix some compile warnings in the gums code
* add server support for DsEnumerateDomainTrusts()

22 years agoAdd endpoint mapper parse code
Jim McDonough [Fri, 17 Oct 2003 15:07:53 +0000 (15:07 +0000)] 
Add endpoint mapper parse code

22 years agoAdd epmapper pipe
Jim McDonough [Fri, 17 Oct 2003 15:07:23 +0000 (15:07 +0000)] 
Add epmapper pipe

22 years agoAdd (un)marshalling code for endpoint mapper map operation
Jim McDonough [Fri, 17 Oct 2003 15:03:46 +0000 (15:03 +0000)] 
Add (un)marshalling code for endpoint mapper map operation

22 years agoAdd endpoint mapper rpc definitions
Jim McDonough [Fri, 17 Oct 2003 15:02:38 +0000 (15:02 +0000)] 
Add endpoint mapper rpc definitions

22 years agoRemove DEBUG statement from wb_common.c as it should not be there.
Richard Sharpe [Thu, 16 Oct 2003 22:03:34 +0000 (22:03 +0000)] 
Remove DEBUG statement from wb_common.c as it should not be there.

22 years agoTidyup wrap checking.
Jeremy Allison [Thu, 16 Oct 2003 20:44:41 +0000 (20:44 +0000)] 
Tidyup wrap checking.
Jeremy.

22 years agoFix buggy data_len calculation in echo. Add paranoia debug message.
Jeremy Allison [Thu, 16 Oct 2003 18:17:41 +0000 (18:17 +0000)] 
Fix buggy data_len calculation in echo. Add paranoia debug message.
Jeremy.

22 years agoEnsure error code path doesn't free unmalloced memory. Bug #628.
Jeremy Allison [Thu, 16 Oct 2003 00:45:14 +0000 (00:45 +0000)] 
Ensure error code path doesn't free unmalloced memory. Bug #628.
Jeremy.

22 years agocreated a new target: genparse
Simo Sorce [Wed, 15 Oct 2003 17:41:25 +0000 (17:41 +0000)] 
created a new target: genparse
this target will build parse file with genstruct
it is the duty of the developer to commit updated files
this is made to make build platforms independent of a working perl
installation as always been with samba

so currently you need to run:
  make genparse
and commit:
  cvs ci include/tdbsam2_parse_info.h
if you change anything in genparse/genstruct code or tdbsam2 code.

Simo.

22 years agoupdating version in copyright
Gerald Carter [Tue, 14 Oct 2003 22:41:30 +0000 (22:41 +0000)] 
updating version in copyright

22 years agoEnable us to see what sequence number we were expecting when we fail a sign
Jeremy Allison [Tue, 14 Oct 2003 17:02:09 +0000 (17:02 +0000)] 
Enable us to see what sequence number we were expecting when we fail a sign
(should help track down out of sequence bugs).
Jeremy.

22 years agofix typo
Simo Sorce [Tue, 14 Oct 2003 07:50:36 +0000 (07:50 +0000)] 
fix typo

22 years agosorry folks, forgot to cvs add/remove before commit.
Simo Sorce [Tue, 14 Oct 2003 07:43:41 +0000 (07:43 +0000)] 
sorry folks, forgot to cvs add/remove before commit.

22 years agoDelete unused label to fix compiler warning.
Tim Potter [Tue, 14 Oct 2003 04:00:39 +0000 (04:00 +0000)] 
Delete unused label to fix compiler warning.

22 years agoEnclose usage of st_blksize and st_blocks struct stat members in
Tim Potter [Tue, 14 Oct 2003 04:00:08 +0000 (04:00 +0000)] 
Enclose usage of st_blksize and st_blocks struct stat members in
#ifdef HAVE_STAT_ST_BLKSIZE and #ifdef HAVE_STAT_ST_BLOCKS,
respectively.

Fixes bug 550 reported by Joachim Schmitz <schmitz@hp.com>.

22 years agoSet errno = ENOSYS if mmap not supported.
Tim Potter [Tue, 14 Oct 2003 03:39:29 +0000 (03:39 +0000)] 
Set errno = ENOSYS if mmap not supported.

From Joachim Schmitz <schmitz@hp.com>

22 years agoUse @PICSUFFIX@ instead of .po in Makefile.in since we have gone to
Tim Potter [Tue, 14 Oct 2003 03:13:21 +0000 (03:13 +0000)] 
Use @PICSUFFIX@ instead of .po in Makefile.in since we have gone to
the trouble of detecting what the PIC suffix should actually be.

Change PICFLAG in configure.in to PICFLAGS for consistency.

Patches from Joachim Schmitz <schmitz@hp.com> for bug 574.

22 years agoIgnore autogenerated tdbsam2_parse_info.h
Tim Potter [Tue, 14 Oct 2003 02:55:13 +0000 (02:55 +0000)] 
Ignore autogenerated tdbsam2_parse_info.h

22 years agoPut back the changes that Simo reverted and fix a speling mistak.
Richard Sharpe [Mon, 13 Oct 2003 23:14:46 +0000 (23:14 +0000)] 
Put back the changes that Simo reverted and fix a speling mistak.

22 years agoSo here it is a non-intrusive patch with my latest work on gums (the
Simo Sorce [Mon, 13 Oct 2003 21:26:10 +0000 (21:26 +0000)] 
So here it is a non-intrusive patch with my latest work on gums (the
laternative to the current passdb).
Currently it is run through a comatibility module in the passdb layer, with
a subset of the functionality it may provide.
It is still work in progress, but as someone asked me about it, and as it
should make no difference to the normal code, I tought it was a good idea to
put it into.
It adds a dependency on perl. I know it is not very nice, but I'm sure we
will work out a solution for that.

As always blame me if I break something, but try to fix yourself, as I am
busy-busy-busy :-)

Simo.

22 years agoPull my previous changes into head as well.
Richard Sharpe [Mon, 13 Oct 2003 18:34:57 +0000 (18:34 +0000)] 
Pull my previous changes into head as well.

22 years agomake sure to use the escaped DN; patch from Guenther Deschner; bug 592
Gerald Carter [Mon, 13 Oct 2003 14:06:27 +0000 (14:06 +0000)] 
make sure to use the escaped DN; patch from Guenther Deschner; bug 592

22 years agomake nt-time <-> unix-time functions nearly reversible
Simo Sorce [Sun, 12 Oct 2003 20:48:30 +0000 (20:48 +0000)] 
make nt-time <-> unix-time functions nearly reversible

22 years agoadding notice about new samba-docs cvs modeule
Gerald Carter [Fri, 10 Oct 2003 16:24:26 +0000 (16:24 +0000)] 
adding notice about new samba-docs cvs modeule

22 years agoremoving docs from HEAD
Gerald Carter [Fri, 10 Oct 2003 16:21:39 +0000 (16:21 +0000)] 
removing docs from HEAD

22 years agoMatch Samba 2.2, and make ACB_NORMAL the default ACB value.
Andrew Bartlett [Fri, 10 Oct 2003 14:24:19 +0000 (14:24 +0000)] 
Match Samba 2.2, and make ACB_NORMAL the default ACB value.

(Samba 2.2 did this in the LDAP code, but it fits better as a generic thing)

Andrew Bartlett

22 years agoEnsure cancelling a blocking lock returns the correct error message.
Jeremy Allison [Fri, 10 Oct 2003 02:02:02 +0000 (02:02 +0000)] 
Ensure cancelling a blocking lock returns the correct error message.
Testing with Samba4 RAW-MUX code.
Jeremy.

22 years agoMake us pass Samba4 lock tester (with one different error message).
Jeremy Allison [Fri, 10 Oct 2003 01:53:35 +0000 (01:53 +0000)] 
Make us pass Samba4 lock tester (with one different error message).
Jeremy.

22 years agoWe need to make sure that the files that contain the static_init_$subsystem;
Jelmer Vernooij [Thu, 9 Oct 2003 22:56:08 +0000 (22:56 +0000)] 
We need to make sure that the files that contain the static_init_$subsystem;
macro get recompiled after configure has ran.
This was done by touching the source file. This patch changes it to removing
the object file, so that you don't need write-access to the source directory.

22 years agoMatch W2K insanty w.r.t. writelock and writeclose. Samba4 torture tester.
Jeremy Allison [Thu, 9 Oct 2003 21:04:51 +0000 (21:04 +0000)] 
Match W2K insanty w.r.t. writelock and writeclose. Samba4 torture tester.
Jeremy.

22 years agoMove sysquotas autoconf tests to a seperate file in tests/
Jelmer Vernooij [Thu, 9 Oct 2003 20:59:38 +0000 (20:59 +0000)] 
Move sysquotas autoconf tests to a seperate file in tests/
Patch by Stefan Metzmacher <metze@metzemix.de>

22 years agoRefuse to configure if --with-expsam=$BACKEND was specified, but
Jelmer Vernooij [Thu, 9 Oct 2003 20:55:38 +0000 (20:55 +0000)] 
Refuse to configure if --with-expsam=$BACKEND was specified, but
the libraries for $BACKEND were not found

22 years agoAt least give a message if we're returning a short read for W2K compatibility.
Jeremy Allison [Thu, 9 Oct 2003 19:01:13 +0000 (19:01 +0000)] 
At least give a message if we're returning a short read for W2K compatibility.
Jeremy.

22 years agoMerge from 3.0:
Tim Potter [Thu, 9 Oct 2003 06:29:50 +0000 (06:29 +0000)] 
Merge from 3.0:

>cosmetic fix when DESTDIR=/ (default)

>fixed for /sbin/mount.smbfs link when using $DESTDIR; bug 525