metze/old/samba4-sync/samba4-draft/git/.git
17 years agor22684: Fix native Samba build. LDB_0_9_0
Jelmer Vernooij [Sat, 5 May 2007 19:54:21 +0000 (19:54 +0000)]
r22684: Fix native Samba build.

17 years agor22683: fix the logic for skipping the pipe_dead()
Stefan Metzmacher [Sat, 5 May 2007 19:05:42 +0000 (19:05 +0000)]
r22683: fix the logic for skipping the pipe_dead()
code on the 2nd run.

thanks volker for finding this!

metze

17 years agor22682: Fix standalone ldb build when parent directory name != ldb.
Jelmer Vernooij [Sat, 5 May 2007 18:59:52 +0000 (18:59 +0000)]
r22682: Fix standalone ldb build when parent directory name != ldb.

17 years agor22681: Fix standalone ldb build when parent directory name != ldb.
Jelmer Vernooij [Sat, 5 May 2007 18:50:56 +0000 (18:50 +0000)]
r22681: Fix standalone ldb build when parent directory name != ldb.

17 years agor22680: Fix a talloc ctx name
Volker Lendecke [Sat, 5 May 2007 17:21:10 +0000 (17:21 +0000)]
r22680: Fix a talloc ctx name

17 years agor22672: use composite_create calls instead of talloc_zero.
Rafal Szczesniak [Fri, 4 May 2007 18:59:51 +0000 (18:59 +0000)]
r22672: use composite_create calls instead of talloc_zero.

rafal

17 years agor22670: changed the RAW-NOTIFY test to support clustered testing (two nodes)
Andrew Tridgell [Fri, 4 May 2007 12:41:28 +0000 (12:41 +0000)]
r22670: changed the RAW-NOTIFY test to support clustered testing (two nodes)

17 years agor22669: fix uninitialized element which was causing a crash with 'net password set'
Stefan Metzmacher [Fri, 4 May 2007 11:26:25 +0000 (11:26 +0000)]
r22669: fix uninitialized element which was causing a crash with 'net password set'

metze

17 years agor22668: Fix ldb build
Jelmer Vernooij [Fri, 4 May 2007 11:08:53 +0000 (11:08 +0000)]
r22668: Fix ldb build

17 years agor22667: revert revision 22640 as it breaks nested structs in idl
Stefan Metzmacher [Fri, 4 May 2007 10:44:41 +0000 (10:44 +0000)]
r22667: revert revision 22640 as it breaks nested structs in idl

metze

17 years agor22665: Change version back to 0.9.
Jelmer Vernooij [Fri, 4 May 2007 10:02:47 +0000 (10:02 +0000)]
r22665: Change version back to 0.9.

17 years agor22662: disable shared library support on Tru64
Stefan Metzmacher [Fri, 4 May 2007 09:35:01 +0000 (09:35 +0000)]
r22662: disable shared library support on Tru64

metze

17 years agor22661: optimize the handling of directly triggered timed events:
Stefan Metzmacher [Fri, 4 May 2007 09:22:52 +0000 (09:22 +0000)]
r22661: optimize the handling of directly triggered timed events:

- if someone adds a timed_event with a zero timeval
  we now avoid serval gettimeofday() calls and the
  event handler doesn't get the current time when it's
  called, instead we also pass a zero timeval

- this also makes sure multiple timed events with a zero timeval
  are processed in the order there're added.

the little benchmark shows that processing 2000000 directly timed events
is now much faster, while avoiding syscalls at all!

> time ./evtest (with the old code)

real    0m6.388s
user    0m1.740s
sys     0m4.632s
> time ./evtest (with the new code)

real    0m1.498s
user    0m1.496s
sys     0m0.004s
metze@SERNOX:~/devel/samba/4.0/samba4-ci/source> cat evtest.c
#include <stdio.h>
#include <stdint.h>
#include <sys/time.h>
#include <talloc.h>
#include <events.h>

static void dummy_fde_handler(struct event_context *ev_ctx, struct fd_event *fde,
                              uint16_t flags, void *private_data)
{
}

static void timeout_handler(struct event_context *ev, struct timed_event *te,
                            struct timeval tval, void *private_data)
{
        uint32_t *countp = (uint32_t *)private_data;
        (*countp)++;
        if (*countp > 2000000) exit(0);
        event_add_timed(ev, ev, tval, timeout_handler, countp);
}

int main(void)
{
        struct event_context *ev;
        struct timeval tval =  { 0, 0 };
        uint32_t count = 0;
        ev = event_context_init(NULL);
        event_add_fd(ev, ev, 0, 0, dummy_fde_handler, NULL);
        event_add_timed(ev, ev, tval, timeout_handler, &count);
        return event_loop_wait(ev);
}

17 years agor22658: - add AC_GNU_SOURCE macro for systems which don't have it
Stefan Metzmacher [Fri, 4 May 2007 06:59:02 +0000 (06:59 +0000)]
r22658: - add AC_GNU_SOURCE macro for systems which don't have it
  (sles8)
- fix compiler warning on some systems

metze

17 years agor22642: Allow standalone build to work without tdb or talloc checked out, but
Jelmer Vernooij [Wed, 2 May 2007 22:05:48 +0000 (22:05 +0000)]
r22642: Allow standalone build to work without tdb or talloc checked out, but
provided by the system.

17 years agor22640: - generate nicer output
Stefan Metzmacher [Wed, 2 May 2007 18:00:02 +0000 (18:00 +0000)]
r22640: - generate nicer output
- fix compiler warning about unused ';'

metze

17 years agor22637: Install tdbbackup and tdbdump again. TDB_1_1_0
Jelmer Vernooij [Wed, 2 May 2007 16:09:33 +0000 (16:09 +0000)]
r22637: Install tdbbackup and tdbdump again.

17 years agor22635: make it possible to not turn off dns canonicalization of hostnames
Stefan Metzmacher [Wed, 2 May 2007 09:54:06 +0000 (09:54 +0000)]
r22635: make it possible to not turn off dns canonicalization of hostnames
with krb5:set_dns_canonicalize=yes

needed for the drsuapi replication, but we should fix this with
a kdc locator plugin ...

metze

17 years agor22634: make the events system much less dependent on the samba4 build system
Andrew Tridgell [Tue, 1 May 2007 21:29:42 +0000 (21:29 +0000)]
r22634: make the events system much less dependent on the samba4 build system

17 years agor22632: merged volkers select events fix
Andrew Tridgell [Tue, 1 May 2007 20:57:54 +0000 (20:57 +0000)]
r22632: merged volkers select events fix

17 years agor22629: if irpc gets freed within event_loop_once() we crash...
Stefan Metzmacher [Tue, 1 May 2007 09:55:36 +0000 (09:55 +0000)]
r22629: if irpc gets freed within event_loop_once() we crash...
so deferr the freeing

metze

17 years agor22628: convert to new composite api
Stefan Metzmacher [Tue, 1 May 2007 09:06:25 +0000 (09:06 +0000)]
r22628: convert to new composite api
and free the smbcli_request explicit to fix a crash where
the request handler gets called after its private data is already
freed

metze

17 years agor22627: fix crash msgs_tmp isn't always initialized
Stefan Metzmacher [Tue, 1 May 2007 08:43:52 +0000 (08:43 +0000)]
r22627: fix crash msgs_tmp isn't always initialized
and we don't need an extra allocated string anyway

metze

17 years agor22626: test member server with local and domain credentials
Stefan Metzmacher [Tue, 1 May 2007 04:12:54 +0000 (04:12 +0000)]
r22626: test member server with local and domain credentials

metze

17 years agor22625: hopefully fix make test on solaris
Stefan Metzmacher [Tue, 1 May 2007 03:30:04 +0000 (03:30 +0000)]
r22625: hopefully fix make test on solaris

metze

17 years agor22624: - configure other auth methods for the member server
Stefan Metzmacher [Tue, 1 May 2007 03:28:12 +0000 (03:28 +0000)]
r22624: - configure other auth methods for the member server
- use the netbiosname as domain and realm for the provision
  of the member server

metze

17 years agor22623: export SMB_CONF_PATH from selftest.pl
Stefan Metzmacher [Tue, 1 May 2007 03:26:01 +0000 (03:26 +0000)]
r22623: export SMB_CONF_PATH from selftest.pl

metze

17 years agor22622: make it possible to pass the config file via 'SMB_CONF_PATH' envvar
Stefan Metzmacher [Tue, 1 May 2007 03:25:17 +0000 (03:25 +0000)]
r22622: make it possible to pass the config file via 'SMB_CONF_PATH' envvar

very usefull for make testenv!

this makes it also possible to pass a config file to smbscript

metze

17 years agor22621: fix the 'sam' auth module
Stefan Metzmacher [Tue, 1 May 2007 03:22:17 +0000 (03:22 +0000)]
r22621: fix the 'sam' auth module

metze

17 years agor22620: fix compiler warnings
Stefan Metzmacher [Tue, 1 May 2007 02:08:11 +0000 (02:08 +0000)]
r22620: fix compiler warnings

metze

17 years agor22619: fix pidl warnings
Stefan Metzmacher [Tue, 1 May 2007 02:01:45 +0000 (02:01 +0000)]
r22619: fix pidl warnings

metze

17 years agor22618: handle the properties related to the type
Stefan Metzmacher [Tue, 1 May 2007 02:00:57 +0000 (02:00 +0000)]
r22618: handle the properties related to the type
and not to 'declare' to avoid a pidl warning with:

declare [switch_type(uint16)] union netr_Validation;

void foo([in] uint16 level, [in,switch_is(level)] netrValidation info);

metze

17 years agor22617: assume we have defered elements if the type is just provides via
Stefan Metzmacher [Tue, 1 May 2007 01:57:17 +0000 (01:57 +0000)]
r22617: assume we have defered elements if the type is just provides via
'declare' this should fix the problem with the winbind IRPC calls

metze

17 years agor22616: allow the unclist file to not specify a share name, and instead
Andrew Tridgell [Mon, 30 Apr 2007 22:38:27 +0000 (22:38 +0000)]
r22616: allow the unclist file to not specify a share name, and instead
inherit the share name from the command line if it is not
specified. This allows you to just specify the servers in the unclist,
and connect to the same share on all servers.

17 years agor22612: Fix more cases where we have uninitialised values in the
Andrew Bartlett [Mon, 30 Apr 2007 16:52:30 +0000 (16:52 +0000)]
r22612: Fix more cases where we have uninitialised values in the
composite_context, because we don't use the creation function.

Andrew Bartlett

17 years agor22610: fix build with included popt
Stefan Metzmacher [Mon, 30 Apr 2007 14:32:50 +0000 (14:32 +0000)]
r22610: fix build with included popt

metze

17 years agor22609: skip BASE-UTABLE (400s) and BASE-SMB (837s)
Stefan Metzmacher [Mon, 30 Apr 2007 13:24:00 +0000 (13:24 +0000)]
r22609: skip BASE-UTABLE (400s) and BASE-SMB (837s)

maybe we should have a "make completetest"
that includes all benchmark and scanner tests,
which we can run before doing a release...

metze

17 years agor22608: use a shorter share name as testparm complained about
Stefan Metzmacher [Mon, 30 Apr 2007 13:17:19 +0000 (13:17 +0000)]
r22608: use a shorter share name as testparm complained about
a share name longer than 12 chars

metze

17 years agor22607: work with the solaris version of popt
Stefan Metzmacher [Mon, 30 Apr 2007 13:13:49 +0000 (13:13 +0000)]
r22607: work with the solaris version of popt

metze

17 years agor22606: don't every try to prompt within make test...
Stefan Metzmacher [Mon, 30 Apr 2007 13:03:03 +0000 (13:03 +0000)]
r22606: don't every try to prompt within make test...

metze

17 years agor22605: Set up all required environments before starting tests.
Jelmer Vernooij [Mon, 30 Apr 2007 12:48:42 +0000 (12:48 +0000)]
r22605: Set up all required environments before starting tests.

17 years agor22602: s/HAVE_SOCKET_IPV6/HAVE_IPV6/ to match the define used by Heimdal. TALLOC_1_0
Jelmer Vernooij [Mon, 30 Apr 2007 11:27:41 +0000 (11:27 +0000)]
r22602: s/HAVE_SOCKET_IPV6/HAVE_IPV6/ to match the define used by Heimdal.

17 years agor22601: run net join with the correct socket_wrapper and krb5 configuration
Stefan Metzmacher [Mon, 30 Apr 2007 11:16:50 +0000 (11:16 +0000)]
r22601: run net join with the correct socket_wrapper and krb5 configuration

metze

17 years agor22600: Update bzr ignores, put right version in .pc files, prepare for support of...
Jelmer Vernooij [Mon, 30 Apr 2007 10:49:42 +0000 (10:49 +0000)]
r22600: Update bzr ignores, put right version in .pc files, prepare for support of system versions of tdb, talloc.

17 years agor22599: Document member server.
Jelmer Vernooij [Mon, 30 Apr 2007 10:23:20 +0000 (10:23 +0000)]
r22599: Document member server.

17 years agor22598: Simplify includes for replace.
Jelmer Vernooij [Mon, 30 Apr 2007 09:38:25 +0000 (09:38 +0000)]
r22598: Simplify includes for replace.

17 years agor22597: try to pass on some more boxes in the build-farm without timeout
Stefan Metzmacher [Mon, 30 Apr 2007 09:35:32 +0000 (09:35 +0000)]
r22597: try to pass on some more boxes in the build-farm without timeout

metze

17 years agor22596: Set _CFLAGS variables rather than putting knowledge in the ldb Makefile.
Jelmer Vernooij [Mon, 30 Apr 2007 08:53:56 +0000 (08:53 +0000)]
r22596: Set _CFLAGS variables rather than putting knowledge in the ldb Makefile.
This should make it easier to allow use of system tdb or talloc libs using
pkg-config.

17 years agor22595: Add version numbers.
Jelmer Vernooij [Mon, 30 Apr 2007 08:08:36 +0000 (08:08 +0000)]
r22595: Add version numbers.

17 years agor22594: This helped coax out valgrind errors last night, but we don't need it any...
Andrew Bartlett [Mon, 30 Apr 2007 06:55:23 +0000 (06:55 +0000)]
r22594: This helped coax out valgrind errors last night, but we don't need it any more.

Andrew Bartlett

17 years agor22582: Cleanups towards making winbind work again. We still have a long way to...
Andrew Bartlett [Sun, 29 Apr 2007 21:40:48 +0000 (21:40 +0000)]
r22582: Cleanups towards making winbind work again.  We still have a long way to go, as this has bitrotted over the past months.

This change in particular catches winbind up with the next
composite_create() function.

We also needed to remove an unused flags field, and fill in the lm
response.

Andrew Bartlett

17 years agor22581: disable BASE-UTABLE and BASE-SMB on the ntvfs/cifs share
Stefan Metzmacher [Sun, 29 Apr 2007 21:40:17 +0000 (21:40 +0000)]
r22581: disable BASE-UTABLE and BASE-SMB on the ntvfs/cifs share
we should maybe disable them complete they're protocol scanners!
and take more than 400s each

metze

17 years agor22580: remove not yet needed line...
Stefan Metzmacher [Sun, 29 Apr 2007 21:38:32 +0000 (21:38 +0000)]
r22580: remove not yet needed line...

metze

17 years agor22579: disable progress printing in the build-farm
Stefan Metzmacher [Sun, 29 Apr 2007 21:37:29 +0000 (21:37 +0000)]
r22579: disable progress printing in the build-farm

metze

17 years agor22575: move script/tests/ -> selftest/
Stefan Metzmacher [Sun, 29 Apr 2007 20:37:59 +0000 (20:37 +0000)]
r22575: move script/tests/ -> selftest/

as discussed with jelmer and abartlet

metze

17 years agor22572: Don't manually set objectGUID values
Andrew Bartlett [Sun, 29 Apr 2007 15:24:49 +0000 (15:24 +0000)]
r22572: Don't manually set objectGUID values

17 years agor22571: - don't use "localhost" anymore in our tests
Stefan Metzmacher [Sun, 29 Apr 2007 13:54:51 +0000 (13:54 +0000)]
r22571: - don't use "localhost" anymore in our tests
- use different passwords for dc and member

metze

17 years agor22570: run the NBT tests against DC and MEMBER
Stefan Metzmacher [Sun, 29 Apr 2007 13:31:13 +0000 (13:31 +0000)]
r22570: run the NBT tests against DC and MEMBER

metze

17 years agor22569: use the $SERVER_IP for the LDAP-* tests because I'll later change
Stefan Metzmacher [Sun, 29 Apr 2007 13:07:36 +0000 (13:07 +0000)]
r22569: use the $SERVER_IP for the LDAP-* tests because I'll later change
$SERVER from localhost to localdc.

we should find out why this is needed and add explicit name resolution
in related code...

metze

17 years agor22568: use the $SERVER_IP for the NET-* tests because I'll later change
Stefan Metzmacher [Sun, 29 Apr 2007 13:05:53 +0000 (13:05 +0000)]
r22568: use the $SERVER_IP for the NET-* tests because I'll later change
$SERVER from localhost to localdc

mimir: please take a look why that's needed at all, as it shouldn't:-)

metze

17 years agor22567: add NET-API-DOMLIST test to automatic testing.
Rafal Szczesniak [Sun, 29 Apr 2007 12:33:04 +0000 (12:33 +0000)]
r22567: add NET-API-DOMLIST test to automatic testing.

rafal

17 years agor22566: add a simple test of libnet_DomainList function.
Rafal Szczesniak [Sun, 29 Apr 2007 12:32:17 +0000 (12:32 +0000)]
r22566: add a simple test of libnet_DomainList function.

rafal

17 years agor22565: add libnet_DomainList function.
Rafal Szczesniak [Sun, 29 Apr 2007 12:31:09 +0000 (12:31 +0000)]
r22565: add libnet_DomainList function.

rafal

17 years agor22563: As tridge requested remove the _strict calls - for Samba3 I'm moving
Jeremy Allison [Sat, 28 Apr 2007 23:23:24 +0000 (23:23 +0000)]
r22563: As tridge requested remove the _strict calls - for Samba3 I'm moving
to a separate file.
Jeremy.

17 years agor22559: Make the ad2OLschema tool case insensitive.
Andrew Bartlett [Sat, 28 Apr 2007 16:39:24 +0000 (16:39 +0000)]
r22559: Make the ad2OLschema tool case insensitive.

Andrew Bartlett

17 years agor22558: Move to a static list of enctypes to put into our keytab. In future,
Andrew Bartlett [Sat, 28 Apr 2007 16:38:06 +0000 (16:38 +0000)]
r22558: Move to a static list of enctypes to put into our keytab.  In future,
I'll allow this to be configured from the secrets.ldb, but it should
fix some user issues.

Andrew Bartlett

17 years agor22557: Simo has long bugged me that the paths in the sam.ldb partitions were
Andrew Bartlett [Sat, 28 Apr 2007 15:18:25 +0000 (15:18 +0000)]
r22557: Simo has long bugged me that the paths in the sam.ldb partitions were
not relative to the location of the sam.ldb, but instead
lp_private_dir().

This fixes that issue.

Andrew Bartlett

17 years agor22556: Make the slapd command valid.
Andrew Bartlett [Sat, 28 Apr 2007 15:17:03 +0000 (15:17 +0000)]
r22556: Make the slapd command valid.

Andrew Bartlett

17 years agor22552: this doesn't need a dc
Stefan Metzmacher [Sat, 28 Apr 2007 09:34:32 +0000 (09:34 +0000)]
r22552: this doesn't need a dc

metze

17 years agor22551: use fixed passwords, to make it possible to reproduce stuff
Stefan Metzmacher [Sat, 28 Apr 2007 09:01:52 +0000 (09:01 +0000)]
r22551: use fixed passwords, to make it possible to reproduce stuff
and look into krb5 blobs when using wireshark on
--socket-wrapper-pcap created files

metze

17 years agor22550: nmblookup -U needs an ip address otherwise we depend on gethostbyname()
Stefan Metzmacher [Sat, 28 Apr 2007 08:58:40 +0000 (08:58 +0000)]
r22550: nmblookup -U needs an ip address otherwise we depend on gethostbyname()

metze

17 years agor22549: export some more info ipaddress and in member env also the
Stefan Metzmacher [Sat, 28 Apr 2007 08:57:06 +0000 (08:57 +0000)]
r22549: export some more info ipaddress and in member env also the
details of the dc

metze

17 years agor22548: - maintain a global array of exported envvars
Stefan Metzmacher [Sat, 28 Apr 2007 08:48:11 +0000 (08:48 +0000)]
r22548: - maintain a global array of exported envvars
- make it possible to specify the envname for make testenv:
  SELFTEST_TESTENV=member make testenv

metze

17 years agor22547: fix some pathes and make sure we work with relative and abslute prefix pathes
Stefan Metzmacher [Sat, 28 Apr 2007 08:43:51 +0000 (08:43 +0000)]
r22547: fix some pathes and make sure we work with relative and abslute prefix pathes

metze

17 years agor22546: use the same error codes in both share backends
Stefan Metzmacher [Sat, 28 Apr 2007 08:37:36 +0000 (08:37 +0000)]
r22546: use the same error codes in both share backends

metze

17 years agor22545: fix formating and a compiler warning
Stefan Metzmacher [Sat, 28 Apr 2007 08:00:51 +0000 (08:00 +0000)]
r22545: fix formating and a compiler warning

metze

17 years agor22544: use the same syntax as in all other files
Stefan Metzmacher [Sat, 28 Apr 2007 07:31:19 +0000 (07:31 +0000)]
r22544: use the same syntax as in all other files
maybe that fixes make test on all sun hosts...

metze

17 years agor22541: Added talloc_size_strict macro.
Jeremy Allison [Fri, 27 Apr 2007 22:04:27 +0000 (22:04 +0000)]
r22541: Added talloc_size_strict macro.
Jeremy.

17 years agor22540: Added _strict varients of the macro calls - added
Jeremy Allison [Fri, 27 Apr 2007 21:58:10 +0000 (21:58 +0000)]
r22540: Added _strict varients of the macro calls - added
prototypes.
Jeremy.

17 years agor22539: Added _strict varients of the talloc calls to
Jeremy Allison [Fri, 27 Apr 2007 21:09:16 +0000 (21:09 +0000)]
r22539: Added _strict varients of the talloc calls to
return NULL on size == 0 varients.
Jeremy.

17 years agor22538: same day late at night in au...:-)
Stefan Metzmacher [Fri, 27 Apr 2007 17:35:15 +0000 (17:35 +0000)]
r22538: same day late at night in au...:-)

fix the strcasecmp_m() returns 0 for a match

also use the correct array element to fill priv->dcinfo

the fixes the problems where ldb changes the order of the search results
when changing the main dc netbios name from "localhost" to "localtest"

metze

17 years agor22536: resolve name before passing to cldap
Stefan Metzmacher [Fri, 27 Apr 2007 14:31:26 +0000 (14:31 +0000)]
r22536: resolve name before passing to cldap

metze

17 years agor22535: pass down $(TESTS) to all test variants
Stefan Metzmacher [Fri, 27 Apr 2007 14:23:08 +0000 (14:23 +0000)]
r22535: pass down $(TESTS) to all test variants

metze

17 years agor22534: don't remove socket and fd_event before we told the
Stefan Metzmacher [Fri, 27 Apr 2007 14:17:28 +0000 (14:17 +0000)]
r22534: don't remove socket and fd_event before we told the
packet layer.

also fix double free (left over from cut-n-paste)

metze

17 years agor22531: Fix up OpenLDAP schema map to almost pass 'make test'.
Andrew Bartlett [Fri, 27 Apr 2007 11:13:37 +0000 (11:13 +0000)]
r22531: Fix up OpenLDAP schema map to almost pass 'make test'.

Andrew Bartlett

17 years agor22530: use message() to make --quiet work
Stefan Metzmacher [Fri, 27 Apr 2007 10:06:34 +0000 (10:06 +0000)]
r22530: use message() to make --quiet work

metze

17 years agor22528: remember that the connection was marked dead and don't
Stefan Metzmacher [Fri, 27 Apr 2007 05:45:53 +0000 (05:45 +0000)]
r22528: remember that the connection was marked dead and don't
allow sending packet over the broken connection,
as we would segfault...

metze

17 years agor22523: Give a hint why this test fails (helped debugging backend issues).
Andrew Bartlett [Thu, 26 Apr 2007 09:32:26 +0000 (09:32 +0000)]
r22523: Give a hint why this test fails (helped debugging backend issues).

Andrew Bartlett

17 years agor22522: Print why we can't find these entries.
Andrew Bartlett [Wed, 25 Apr 2007 16:36:46 +0000 (16:36 +0000)]
r22522: Print why we can't find these entries.

Andrew Bartlett

17 years agor22521: Don't fail the module load just because we don't have a schema yet.
Andrew Bartlett [Wed, 25 Apr 2007 16:36:15 +0000 (16:36 +0000)]
r22521: Don't fail the module load just because we don't have a schema yet.

This code to be replaced by metze's schema loader soon...

Andrew Bartlett

17 years agor22520: Fix the TYPE command.
Jelmer Vernooij [Wed, 25 Apr 2007 16:10:54 +0000 (16:10 +0000)]
r22520: Fix the TYPE command.

17 years agor22519: convert libnet_DomainOpenSamr function from state-handling routine
Rafal Szczesniak [Wed, 25 Apr 2007 15:24:01 +0000 (15:24 +0000)]
r22519: convert libnet_DomainOpenSamr function from state-handling routine
to composite_continue.

rafal

17 years agor22518: Create pkgconfig dir.
Jelmer Vernooij [Wed, 25 Apr 2007 14:18:22 +0000 (14:18 +0000)]
r22518: Create pkgconfig dir.

17 years agor22517: Use DESTDIR
Jelmer Vernooij [Wed, 25 Apr 2007 13:31:38 +0000 (13:31 +0000)]
r22517: Use DESTDIR

17 years agor22516: Use DESTDIR
Jelmer Vernooij [Wed, 25 Apr 2007 12:58:49 +0000 (12:58 +0000)]
r22516: Use DESTDIR

17 years agor22515: only steal pipe on success
Stefan Metzmacher [Wed, 25 Apr 2007 12:36:12 +0000 (12:36 +0000)]
r22515: only steal pipe on success

metze

17 years agor22514: Add version numbers to tdb and talloc (required so they can be packaged indep...
Jelmer Vernooij [Wed, 25 Apr 2007 12:30:25 +0000 (12:30 +0000)]
r22514: Add version numbers to tdb and talloc (required so they can be packaged independent of Samba for Debian).

17 years agor22508: at option for the startup delay
Stefan Metzmacher [Wed, 25 Apr 2007 02:43:23 +0000 (02:43 +0000)]
r22508: at option for the startup delay

metze

17 years agor22503: Add support for dgram to socket_ipv6. No tests yet...
Jelmer Vernooij [Tue, 24 Apr 2007 13:55:04 +0000 (13:55 +0000)]
r22503: Add support for dgram to socket_ipv6. No tests yet...

17 years agor22501: dispatching events explicitly is not necessary.
Rafal Szczesniak [Tue, 24 Apr 2007 09:35:55 +0000 (09:35 +0000)]
r22501: dispatching events explicitly is not necessary.

rafal