1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-15 05:57:49 +03:00

12141 Commits

Author SHA1 Message Date
Simo Sorce
0ed85e6a2d sorry folks, forgot to cvs add/remove before commit. -
Tim Potter
e982dd5bc4 Delete unused label to fix compiler warning. -
Tim Potter
3d777f5389 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>.
-
Tim Potter
a94b91ee28 Set errno = ENOSYS if mmap not supported.
From Joachim Schmitz <schmitz@hp.com>
-
Tim Potter
0abe1964f7 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.
-
Tim Potter
bb2b8906a0 Ignore autogenerated tdbsam2_parse_info.h -
Richard Sharpe
72b1f72775 Put back the changes that Simo reverted and fix a speling mistak. -
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. -
Gerald Carter
fe6aa4a951 make sure to use the escaped DN; patch from Guenther Deschner; bug 592 -
Simo Sorce
98d60dc1c7 make nt-time <-> unix-time functions nearly reversible -
Gerald Carter
982a5609ff adding notice about new samba-docs cvs modeule -
Gerald Carter
820903ef5a removing docs from HEAD -
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
-
Jeremy Allison
5e6080597f Ensure cancelling a blocking lock returns the correct error message.
Testing with Samba4 RAW-MUX code.
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.
-
Jeremy Allison
1c1c4ee8be 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
46a5575f19 Refuse to configure if --with-expsam=$BACKEND was specified, but
the libraries for $BACKEND were not found
-
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
e071567eea Merge from 3.0:
>Fix spelling mistake.
-
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
1d9d49c918 Merge from 3.0:
- Don't install text docs
-
Tim Potter
c72cceaccf Merge from 3.0:
- Updated *.msg files from running genmsg
  - Add genmsg program
  - Add Jelmer's Dutch translation
-
Tim Potter
0f38359345 Merge from 3.0:
>4 changes
>
>  * default to 1 CPU (patch from Nir Soffer)
>  * clear up some messy syntax (extra ;'s)
>  * remove duplicate installation of *msg files
>  * remove unnecessary build of smbspool`& modules
-
Jeremy Allison
e4df467320 Changes to allow Samba3 to pass the Samba4 RAW-READ tests.
Jeremy.
-
Jeremy Allison
960e2b4a5f Fixup error code returns from Samba4 tester. Ensure invalid paths are
validated the same way.
Jeremy.
-
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 -
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.
-
Gerald Carter
cf6ac7995a cosmetic fix when DESTDIR=/ (default) -
Gerald Carter
759990833e default DESTDIR=/ -
Simo Sorce
66074d3b09 split some security related functions in their own files.
(no need to include all of smbd files to use some basic sec functions)

also minor compile fixes
-
Gerald Carter
9da4d1f7db don't call ads_destroy() twice; fixes segfault in winbindd when DC goes down; bug 437 -
Gerald Carter
bbc403ec6e cleaning out patch list; patch from Steve L. to change the cwd before the postexec script -
Gerald Carter
6cbdbdf9e1 abstract UUID parsing code to an individual function; patch from Anthony -
Jeremy Allison
6defe43e6d Portability fixes from schmitz@hp.com (Joachim Schmitz). Bug #549.
Jeremy.
-
Jeremy Allison
9519ffc7cb Portability fix from schmitz@hp.com (Joachim Schmitz). Bug #547.
Jeremy.
-
Jeremy Allison
a0828a2a1c Portability fix from schmitz@hp.com (Joachim Schmitz) for bug #548.
Jeremy.
-
Jeremy Allison
0857932c1c Correct fix for excel read-only bug. Add panic for logic error in developer mode.
Jeremy.
-