1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-07 01:58:28 +03:00

12797 Commits

Author SHA1 Message Date
Simo Sorce
7b3c94b5cf 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.
-
Richard Sharpe
96f1ce740a Pull my previous changes into head as well. -
Richard Sharpe
7c7ef9680b Add a better error message to wb_common.c when unable to connect to a pipe
socket and add a comment to winbindd.c to explain the fancy calculation of
buffer offset.
-
Gerald Carter
fe6aa4a951 make sure to use the escaped DN; patch from Guenther Deschner; bug 592 -
Gerald Carter
5eca81c660 make sure to use the escaped DN; patch from Guenther Deschner; bug 592 -
Simo Sorce
bda64a11f7 make nt-time <-> unix-time functions nearly reversible -
Simo Sorce
98d60dc1c7 make nt-time <-> unix-time functions nearly reversible -
Gerald Carter
eb28ca80ca bumping version -
Andrew Bartlett
36ccf922a3 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
-
Andrew Bartlett
dfd6bef580 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
-
Jeremy Allison
533847c95d Ensure cancelling a blocking lock returns the correct error message.
Testing with Samba4 RAW-MUX code.
Jeremy.
-
Jeremy Allison
5e6080597f Ensure cancelling a blocking lock returns the correct error message.
Testing with Samba4 RAW-MUX code.
Jeremy.
-
Jeremy Allison
7622a9dbbd Make us pass Samba4 lock tester (with one different error message).
Jeremy.
-
Jeremy Allison
1c19739aea Make us pass Samba4 lock tester (with one different error message).
Jeremy.
-
Jelmer Vernooij
2ef9661862 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.
-
Jelmer Vernooij
1a95f5c9a9 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.
-
Jeremy Allison
1c1c4ee8be Match W2K insanty w.r.t. writelock and writeclose. Samba4 torture tester.
Jeremy.
-
Jeremy Allison
c682fae16a Match W2K insanty w.r.t. writelock and writeclose. Samba4 torture tester.
Jeremy.
-
Jelmer Vernooij
cd3e4882fc Move sysquotas autoconf tests to a seperate file in tests/
Patch by Stefan Metzmacher <metze@metzemix.de>
-
Jelmer Vernooij
9f6cd8177d Move sysquotas autoconf tests to a seperate file.
Patch by Stefan Metzmacher <metze@metzemix.de>
-
Jelmer Vernooij
46a5575f19 Refuse to configure if --with-expsam=$BACKEND was specified, but
the libraries for $BACKEND were not found
-
Jelmer Vernooij
76229085db Refuse to configure if --with-expsam=$BACKEND was used but no libraries
were found for $BACKEND
-
Jeremy Allison
84c993d9cd At least give a message if we're returning a short read for W2K compatibility.
Jeremy.
-
Jeremy Allison
9216948062 At least give a message if we're returning a short read for W2K compatibility.
Jeremy.
-
Tim Potter
27e8f16188 Merge from 3.0:
>cosmetic fix when DESTDIR=/ (default)

>fixed for /sbin/mount.smbfs link when using $DESTDIR; bug 525
-
Tim Potter
2aaafa5007 Merge from 3.0:
>Remove duplicate function (now in rpc_parse/parse_prs.c) and fix a RPC debug
>(I renamed the element of the structure).
>
>Andrew Bartlett
-
Tim Potter
e4551b3d7f Merge from 3.0:
>Make pdb_ldap.c compile with SUN iPlanet headers. Whether this works will be
>tested soon, but this fix is somewhat obvious.
>
>Volker
-
Tim Potter
85eda9bc0c Merge from 3.0:
>Typo in error message.
>Jeremy.
-
Tim Potter
84a0433c52 Merge from 3.0:
>Moving towards better i18n support in SWAT.  This commit contains a
>bunch of updates to bug 413 from Monyo:
>
>1) pick up proper strings to call msg strings for example to add
>  strings in wizard menu in web/swat.c, web/statuspage.c and
>  param/loadparm.c.
>
>2) define N_() macro in include/intl.h to pick up some strings
>  in param/loadparm.c
>
>3) quote all name and value tag with '"'
>  For example in swat.c:720 the "Edit Parameter Values" string is
>  displayd only as "Edit" because value tag is not quoted like:
>  value=Edit Parameter Values
>  These tags should be quoted though it sometimes works well
>  without quotation.
>
>4) modify the msg strings not to contain HTML tags or other
>  non-message strings. For example
>  dprintf(_("test\n")); is modified to dprintf("%s\n", _("test"));
-
Tim Potter
eb9f5c0ec1 Merge from 3.0:
>Portability fix from Joachim Schmitz.  Closes bug #546.
-
Tim Potter
17efb306aa Merge from 3.0:
>Moving towards better i18n support in SWAT.  This commit contains a
>bunch of updates to bug 413 from Monyo:
>
>1) pick up proper strings to call msg strings for example to add
>  strings in wizard menu in web/swat.c, web/statuspage.c and
>  param/loadparm.c.
>
>2) define N_() macro in include/intl.h to pick up some strings
>  in param/loadparm.c
>
>3) quote all name and value tag with '"'
>  For example in swat.c:720 the "Edit Parameter Values" string is
>  displayd only as "Edit" because value tag is not quoted like:
>  value=Edit Parameter Values
>  These tags should be quoted though it sometimes works well
>  without quotation.
>
>4) modify the msg strings not to contain HTML tags or other
>  non-message strings. For example
>  dprintf(_("test\n")); is modified to dprintf("%s\n", _("test"));
-
Tim Potter
442cfcce0d Merge from 3.0:
>Explicitly initialise the value of AR for vendor makes that don't do
>this (HPUX 11).  Currently it's initialised to 'ar' but this may have
>to be changed if any systems pop up that have archivers that aren't
>named 'ar'. Closes bug #552.

>Fallback to our defaults (CP850/ASCII/UTF8) if there is no native
>iconv on the platform. This allows to compile and complain about it
>at runtime
-
Tim Potter
fd18356fe2 Merge from 3.0:
>Explicitly initialise the value of AR for vendor makes that don't do
>this (HPUX 11).  Currently it's initialised to 'ar' but this may have
>to be changed if any systems pop up that have archivers that aren't
>named 'ar'. Closes bug #552.

>fixed for /sbin/mount.smbfs link when using $DESTDIR; bug 525
-
Tim Potter
c72cceaccf Merge from 3.0:
- Updated *.msg files from running genmsg
  - Add genmsg program
  - Add Jelmer's Dutch translation
-
Jeremy Allison
e4df467320 Changes to allow Samba3 to pass the Samba4 RAW-READ tests.
Jeremy.
-
Jeremy Allison
e7565dbba6 Changes to allow Samba3 to pass the Samba4 RAW-READ tests.
Jeremy.
-
Jeremy Allison
6ad2f0ba27 Fixup error code returns from Samba4 tester. Ensure invalid paths are
validated the same way.
Jeremy.
-
Jeremy Allison
960e2b4a5f Fixup error code returns from Samba4 tester. Ensure invalid paths are
validated the same way.
Jeremy.
-
Jelmer Vernooij
8646f1014f Add Dutch swat translation -
Jeremy Allison
cdba166e31 Max warnings with gcc.
Jeremy.
-
Gerald Carter
19925e3a04 make sure to call get_user_groups() with the full winbindd name for a user if he;she has one; bug 406 -
Gerald Carter
1737b36e91 make sure to call get_user_groups() with the full winbindd name for a user if he;she has one; bug 406 -
Jeremy Allison
3ebbd67dec Tut tut - always run with max warnings on gcc...
Jeremy.
-
Tim Potter
9cf7021b88 Add script to generate msg files from SWAT sources.
Re-generate msg files.  Monyo has updated the Japanese translation.
Others remain incomplete.
-
Jeremy Allison
166efa30d2 Version of patch from nick@isilon.com (Nicholas Kirsch) for bug #564.
Canonicalise SMB_INFO_ALLOCATION in the same was as SMB_FS_FULL_SIZE_INFORMATION.
Jeremy.
-
Jeremy Allison
76fe5ffb4d Version of patch from nick@isilon.com (Nicholas Kirsch) for bug #564.
Canonicalise SMB_INFO_ALLOCATION in the same was as SMB_FS_FULL_SIZE_INFORMATION.
Jeremy.
-
Jeremy Allison
e2f4c3d113 Fix for bug #562 (incorrect mode sum) by h-yamasaki@pd.jp.nec.com.
Jeremy.
-
Jeremy Allison
7fb8a1bd38 Fix for bug #562 (incorrect mode sum) by h-yamasaki@pd.jp.nec.com.
Jeremy.
-
Gerald Carter
cf6ac7995a cosmetic fix when DESTDIR=/ (default) -
Gerald Carter
e660b5752a cosmetic fix when DESTDIR=/ (default) -