1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-14 01:57:53 +03:00

6398 Commits

Author SHA1 Message Date
Andrew Tridgell
831f25a9a7 updated ldap test to test for less common function -
Andrew Tridgell
da353bc539 fixed a typo in vsyslog() -
Herb Lewis
b60d6f1197 remove duplicate lines -
Martin Pool
ecc624067c smbcontrol in non-interactive mode was returning True for success --
need to invert this to give the shell 0.
-
Martin Pool
53f1c0298b Add option to pass NULL max_replies to wait_for_replies in case you
don't know how many to expect.
-
Martin Pool
17bb0f60af Add code to send MSG_REQ_POOL_USAGE. (smbd doesn't respond yet.)
Factor out common code to wait until replies are received or timeout
expires.

Show debug message when messages are sent.
-
Tim Potter
54d2765615 Append to log.winbindd instead of overwriting it so we are consistent with
smbd/nmbd behaviour.
-
Tim Potter
60d1d0bfa9 Fix for null command description in rpcclient help. From Benjamin Kuit
<bj@it.uts.edu.au>.
-
Martin Pool
22e510ea0d Add an output parameter to message_send_all that says how many
messages were sent, so you know how many replies to expect.

Const and doc religion.
-
Martin Pool
d32598c953 Factor out a broadcast_printer_notify() routine. -
Martin Pool
b28dbbf569 Add MSG_REQ_POOL_USAGE to get memory usage info. -
Samba Release Account
9542b0a42c preparing for release of 3.0-alpha12 -
Andrew Tridgell
aa52ae7354 lp_setup_logfile() doesn't exist any more -
Andrew Tridgell
39f2e2e162 check for a winbindd username when doing a kerberos auth -
Andrew Tridgell
dfbe442c66 make sure we store the domain sid when joining a ADS domain -
Andrew Tridgell
ff002a458a added ads_domain_sid() function -
Jeremy Allison
0bea6cf79a Removed global debugf. Replaced with lp_set_logfile(name).
Fixed winbindd to finally stop leaving log. file droppings :-).
Jeremy.
-
Jeremy Allison
057e91c1c3 Setup global_myworkgroup. Needed for secrets fetch code.
Jeremy.
-
Gerald Carter
72d3b16022 merge from 2.2 -
Samba Release Account
5ed31faeb1 preparing for release of 3.0-alpha11 -
Andrew Tridgell
2ffefba869 fixed more warnings on irix -
Andrew Tridgell
cc6c263993 fixed warnings on irix and crash bug on big endian machines -
Andrew Tridgell
102af994de fixed sscanf() of gid_t values -
Andrew Tridgell
ee161a5728 don't use server_info after its been freed -
Andrew Tridgell
e873d0ff1e support "map to guest" with spnego -
Andrew Tridgell
7984ae0121 forgot to commit this file from remus -
Andrew Tridgell
51268c512d added net lookup command -
Martin Pool
79feca4d25 Ignore torture.tdb -
Andrew Tridgell
6d2f7ed708 net now sends its debug to stderr so its output can be relied upon in
scripts
-
Andrew Tridgell
c8a040f2aa fixed long filenames on win98
the fstype must not be null terminated or win98 doesn't recognise it
-
Andrew Tridgell
0cfd0a5e54 much better auto-init of valid_table[]. This should just about remove
the need for valid.dat
-
Tim Potter
7d8082a8ad Grr - numbers printed in hexadecimal should be preceeded by 0x -
Tim Potter
b3aff6b5a3 Added some comments showing hex values of some constants. -
Andrew Tridgell
85f04fa61d mark '.' as a valid character -
Martin Pool
e76d27fcdb Add --enable-dmalloc to link against the dmalloc malloc debugger.
It's not as strong as Insure, but it's free, reasonably efficient and
works on every platform.
-
Andrew Tridgell
412e79c448 net ads password and net ads chostpass commands from Remus Koos -
Jeremy Allison
ab2e55cdb3 Added AC_CHECK_FUNCS(syslog vsyslog).
nsswitch code uses vsyslog without checking for it.
Provide replacement for vsyslog in lib/snprintf if not found by configure.
Jeremy.
-
Jeremy Allison
2d7b81e692 Allow ACL set to fail gracefully on HP HFS filesystems.
Jeremy.
-
Andrew Tridgell
1bf5c1a46f use "ads server" option if set for primary domain -
Samba Release Account
c0ff274379 preparing for release of 3.0-alpha10 -
Andrew Tridgell
e97b40e094 add support for mixtures of ADS/NT4 domains, as long as the primary
domain is ADS
-
Andrew Tridgell
05a90a2884 much better ADS error handling system -
Andrew Tridgell
344b786efe we only have gss_ fns on a krb5 capable box -
Andrew Tridgell
adf44a9bd0 added trusted realm support to ADS authentication
the method used for checking if a domain is a trusted domain is very
crude, we should really call a backend fn of some sort. For now I'm
using winbindd to do the dirty work.
-
Andrew Tridgell
ee1c3e1f04 - added initial support for trusted domains in winbindd_ads
- gss error code patch from a.bokovoy@sam-solutions.net
- better sid dumping in ads_dump
- fixed help in wbinfo
-
Andrew Tridgell
7348a969bc better nsstest error checking -
Andrew Tridgell
c11c27b281 fixed sid_compare_domain() -
Martin Pool
a7b052d991 Use less memory, but scribble all over it, just in case there's
something wrong with the way it's allocated.
-
Martin Pool
e2b080587c Doc how to reply to messages. -
Martin Pool
4c6c03c8c7 Make TALLOC_CTX and talloc_chunk private to talloc.c.
Add a global singly-linked list of all active talloc pools, so that we
can eventually show how much memory is used for different purposes.
This also gives a check that pools are not being doubly freed.

talloc_init_named now handle a NULL name properly (ie does nothing)

Add accessor talloc_pool_name().
-