1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-25 06:04:04 +03:00

14382 Commits

Author SHA1 Message Date
Gerald Carter
e5dffa90ba working draft of release notes -
Gerald Carter
d09dc91c02 possible fix for bug 288 to repcent using an uninitialized cli_state struct -
Alexander Bokovoy
836b9fffa0 Fix charset detection code in configure.
Now we are:
1. Try to find correct name for default character sets for the platform
2. Use DEFAULT_{DOS|DISPLAY|UNIX}_CHARSET defines set during configure phase as defaults

This should fix CP850 problem on Solaris (at least) because it actually has IBM850 which
is the same but under different name
-
Rafal Szczesniak
836746beab Give a temporary hint on how to delete trust account.
rafal
-
Volker Lendecke
497b190edc Latest heimdal snapshot has a krb5_set_real_time with a slightly
different (but by implicit conversion hopefully compatible... ;-)
prototype. Fix the build for that.
-
Jelmer Vernooij
0378999142 Regenerate docs -
Jelmer Vernooij
dc33e94161 Regenerate docs -
Jelmer Vernooij
ff7de3e19c Document 'ldap group suffix', better documentation for 'ldap user suffix' -
Jelmer Vernooij
25cec4d356 Fix doc build -
Tim Potter
cd0b6f74ba Fix syntax error! -
Gerald Carter
b9779ba590 fix compile warnings on IRIX -
Jelmer Vernooij
8b1fd7526b document set quota command -
Jelmer Vernooij
e5e71af660 Fix typos -
Jelmer Vernooij
19f8f26f0b Document get quota command -
Jelmer Vernooij
28f1d7b201 Print more than 1 packet in hex mode -
Jelmer Vernooij
071850f87a Remove accidently added SMB_MODULE_PROVIDES() lines -
Jelmer Vernooij
b8ff07a343 Document modules changes -
Jelmer Vernooij
104f62272d Remove nasty hack in modules system. We don't recompile files anymore
after the Makefile changes.
-
Jelmer Vernooij
aa96f78001 Add ability to output native pcap files without the requirement for text2pcap.
IP and TCP checksums are not calculated, but that should not matter.
-
Herb Lewis
398bd14fc6 get rid of more compiler warnings -
Jelmer Vernooij
1f126306c2 Add idmap diagrams from Chris and John -
Volker Lendecke
dc2d2ad467 Add the gss-spnego kerberos server side to ntml_auth. This uses the
same ads_verify_ticket routine that smbd uses, so in the current state
we have to be have the host password in secrets.tdb instead of the
keytab. This means we have to be an ADS member, but it's a start.

Volker
-
Herb Lewis
864d63a82d make sure idb file is properly sorted. -
Herb Lewis
ae25e7746e get rid of compiler warnings -
Herb Lewis
61bea183a2 get rid of const as these things really are not const -
Jelmer Vernooij
6a76750dc4 Fix some memory issues. It is now possible to convert extract packet data
from a samba log file and view it in ethereal, including the DCE/RPC, RAP, etc
calls that are contained in a packet, just like you would with a real
network sniff!
-
Herb Lewis
6ec683e24e get rid of warning on IRIX -
Volker Lendecke
3aed9c8a4a Don't ask, it's too embarrassing :-)
Actually let the user explicitly specify a rid...

Volker
-
Volker Lendecke
d8ab446859 Fix memleaks.
Currently I'm compiling against MIT Kerberos 1.2.8.

Anthony, you said you have a heimdal installation available. Could you
please compile this stuff with krb and check it with valgrind?

Thanks,

Volker
-
Herb Lewis
a6a39c61e8 get rid of some sompiler warnings on IRIX -
Herb Lewis
244c61b1dd get rid of unused call -
Herb Lewis
71469f3220 return actual results instead of always OK -
Herb Lewis
327d26253e fix type -
Jelmer Vernooij
b4499c8aab Get packet contents correct as well. -
Herb Lewis
589e94f4ff add IRIX EA support -
Jeremy Allison
309835deac Fix attribute set using setfileinfo - Samba4 found.
Jeremy.
-
Jeremy Allison
e9cef61555 Ignore silently set disposition information when set on a path.
Samba4 tester.
Jeremy.
-
Jelmer Vernooij
95b1d4933b Add utility that takes a samba log file (at least level 5 for headers and
10 for data contents as well) and creates a packet trace readable by
ethereal.

What does not work yet:
 - SMB data contents (log level 5)
 - SMB data contents beyond the 512 byte range (log level 99 or something?)
-
Jelmer Vernooij
e8dc799ffb Makefile.in -
Jeremy Allison
fbdf276e36 nlink field should decrement when delete pending is set.
Found by Samba4.
Jeremy.
-
Jeremy Allison
273ebfceb3 Fix setfileinfo level 1 - it only takes 12 bytes. Found by Samba4
torture tester.
Jeremy.
-
Jeremy Allison
97e1d5c957 Fix changing of attributes via setattr. Samba4 test fixes.
Jeremy.
-
Herb Lewis
a93fa23c17 get rid of IRIX test as it is wrong. -
Gerald Carter
0b31f592df jeremy foo -
Gerald Carter
dd9cb6f820 fix build -
Volker Lendecke
8ebd92da01 Don't ask twice for the password -
Jeremy Allison
10d90171ed Fix SMBseek and get/set position information SMBs. Works against
Samba4 tester. You will need a make clean; make all after this !
Jeremy.
-
Gerald Carter
96bc2abfcb Attempt at fixing bug #283. There however is no solution.
There is a workaround documented in the bug report.

This patch does:

  * add server support for the LSA_DS UUID on the lsarpc pipe
  * store a list of context_ids/api_structs in the pipe_struct
    so that we don't have to lookup the function table for a pipe.
    We just match the context_id.  Note that a dce/rpc alter_context
    does not destroy the previous context so it is possible to
    have multiple bindings active on the same pipe. Observed from
    standalone win2k sp4 client.
  * added server code for DsROleGetPrimaryDOmainInfo() but disabled it
    since it causes problems enumerating users and groups from a 2ksp4
    domain member in a Samba domain.
-
Volker Lendecke
ce5b8d2ec2 In ads_verify_realm, all we use in the ADS_STRUCT is the
auth.realm. So directly pass that instead of setting up and tearing
down the ADS_STRUCT.

Volker
-
Richard Sharpe
772bb41a9d Small fix to include existing CPPFLAGS when looking for iconv. -