ddiss/samba.git
12 years agos3:net registry: polish output of net registry enumerate[_recursive]
Michael Adam [Mon, 30 May 2011 14:54:47 +0000 (16:54 +0200)]
s3:net registry: polish output of net registry enumerate[_recursive]

so that net registry enumerate output is as before, and
net registry enumerate_recursive is formatted more nicely
(cherry picked from commit 0d746f653e76de52985d543a15fd6ee3bf2f4823)

Fix bug: #8193

12 years agos3:net: registry: use recursive implementation for enumerate
Gregor Beck [Mon, 30 May 2011 08:24:16 +0000 (10:24 +0200)]
s3:net: registry: use recursive implementation for enumerate

Signed-off-by: Michael Adam <obnox@samba.org>
(cherry picked from commit 5ec479fa0c9db4072541d46345164542d037cfc9)

Fix bug: #8193

12 years agos3:net: registry: add new command enumerate_recursive
Gregor Beck [Mon, 30 May 2011 06:58:34 +0000 (08:58 +0200)]
s3:net: registry: add new command enumerate_recursive

Signed-off-by: Michael Adam <obnox@samba.org>
(cherry picked from commit 22011ddc9e72c8a201e3ca6e01745a68738d5916)

Fix bug: #8193

12 years agos3: improve WHATSNEW around kerberos changes
Andrew Bartlett [Tue, 14 Jun 2011 11:51:36 +0000 (21:51 +1000)]
s3: improve WHATSNEW around kerberos changes

12 years agos3:wb_lookupsids: add some paranoia checks to wb_lookupsids_recv()
Stefan Metzmacher [Thu, 16 Jun 2011 16:25:15 +0000 (18:25 +0200)]
s3:wb_lookupsids: add some paranoia checks to wb_lookupsids_recv()

This hopefully catches future bugs.

metze

Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Thu Jun 16 19:50:16 CEST 2011 on sn-devel-104
(cherry picked from commit 5961852d9c0e5cf64cea988586d610af9d63d487)

12 years agos3:wb_lookupsids: don't ignore 'result' and check if we got useable values
Stefan Metzmacher [Thu, 16 Jun 2011 16:16:15 +0000 (18:16 +0200)]
s3:wb_lookupsids: don't ignore 'result' and check if we got useable values

The wrong fix for bug #8215 discovered this bug, as it caused
sam_rids_to_names() to always return NT_STATUS_NONE_MAPPED.

metze
(cherry picked from commit 85809ccbe3a79f307af1fdd227f33b899d8db1b4)

12 years agoRevert "s3-winbind: Fix paranoia checks in winbindd_samr.c."
Stefan Metzmacher [Thu, 16 Jun 2011 16:40:04 +0000 (18:40 +0200)]
Revert "s3-winbind: Fix paranoia checks in winbindd_samr.c."

This reverts commit 207a84d725b905c2b119d2ef0f4f4d4eb391140d.

This is the wrong fix for the problem, see bug #8215.

metze
(cherry picked from commit 283f8a7fb5089a7126f07e26315fd06ab59997d8)

12 years agos3:utils/net_*registry: use c99 initializers which are supported by old gcc 2.95...
Stefan Metzmacher [Wed, 15 Jun 2011 00:34:53 +0000 (02:34 +0200)]
s3:utils/net_*registry: use c99 initializers which are supported by old gcc 2.95 compilers (bug #8226)

metze

Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Wed Jun 15 03:48:41 CEST 2011 on sn-devel-104
(cherry picked from commit 5d736d87778754de7043d902c7d1d5db1c46cb02)

12 years agos3:libsmb/clireadwrite: calculate cli_write_max_bufsize() correct based on max_xmit
Stefan Metzmacher [Wed, 8 Jun 2011 17:01:13 +0000 (19:01 +0200)]
s3:libsmb/clireadwrite: calculate cli_write_max_bufsize() correct based on max_xmit

This is important in order to support DCERPC over ncacn_np against NT4 servers,
where max_xmit is just 4356.

metze
(cherry picked from commit f0ba1afe5f7dbafaf22c3028864de0f3910f675f)

The last 14 patches address the generic part of bug #8195
(rpc client code doesn't work against NT4, when we need to fragment requests).

12 years agos3:libsmb/clireadwrite: calculate cli_read_max_bufsize() correct based on max_xmit
Stefan Metzmacher [Wed, 8 Jun 2011 16:59:39 +0000 (18:59 +0200)]
s3:libsmb/clireadwrite: calculate cli_read_max_bufsize() correct based on max_xmit

This is important in order to support DCERPC over ncacn_np against NT4 servers,
where max_xmit is just 4356.

metze
(cherry picked from commit 73128b7cc7f536f80072a19cb69527c53d9a6c2f)

12 years agos3:libsmb/clitrans: correctly transfer the seqnum between secondary and primary requests
Stefan Metzmacher [Thu, 9 Jun 2011 09:57:55 +0000 (11:57 +0200)]
s3:libsmb/clitrans: correctly transfer the seqnum between secondary and primary requests

This is needed to implement SMB signing correct.

metze
(cherry picked from commit 5d06b2197b5fd95aaf0394d1bdba957bac6c3570)

12 years agos3:libsmb/clitrans: fix handling of multi pdu [nt]trans[s][2] calls
Stefan Metzmacher [Wed, 8 Jun 2011 08:31:23 +0000 (10:31 +0200)]
s3:libsmb/clitrans: fix handling of multi pdu [nt]trans[s][2] calls

We now keep the primary request open for the whole logical request.
The primary request is the one that gets all incoming replies.
While secondary requests are handled as separate one-way requests.

metze
(cherry picked from commit 1dd24ac06a7472f53b06bc0aaa54cb22c8da0f78)

12 years agos3:libsmb/clitrans: use subreq2 as variable for the secondary requests
Stefan Metzmacher [Wed, 8 Jun 2011 14:41:11 +0000 (16:41 +0200)]
s3:libsmb/clitrans: use subreq2 as variable for the secondary requests

metze
(cherry picked from commit 10bb088cf1e005fd047c09afcf6b5b8999d416fe)

12 years agos3:libsmb/clitrans: move MID handling to the end of cli_trans_send() and add a comment
Stefan Metzmacher [Wed, 8 Jun 2011 14:11:00 +0000 (16:11 +0200)]
s3:libsmb/clitrans: move MID handling to the end of cli_trans_send() and add a comment

metze
(cherry picked from commit 5146c9ba9df063d6611abe356f9262adb027b091)

12 years agos3:libsmb/clitrans: correctly marshall [nt]trans[s][2] requests
Stefan Metzmacher [Tue, 7 Jun 2011 22:44:34 +0000 (00:44 +0200)]
s3:libsmb/clitrans: correctly marshall [nt]trans[s][2] requests

We need to align params and data to 4 byte offsets.

This also correctly recalculates the useable space after each step.

metze
(cherry picked from commit 0a8fd50bd806e925a915c74cb86733481b2144f6)

12 years agos3:libsmb/clitrans: marshall SMBnttrans[2] as the others
Stefan Metzmacher [Thu, 9 Jun 2011 10:22:59 +0000 (12:22 +0200)]
s3:libsmb/clitrans: marshall SMBnttrans[2] as the others

This is just to make the code more readable
and easier to notice how many words we're using in vwv.

metze
(cherry picked from commit 6f7af1b0388d30c8a06c495713066b90ded00780)

12 years agos3:libsmb/clitrans: use uint32_t for param and data variables
Stefan Metzmacher [Wed, 8 Jun 2011 15:08:00 +0000 (17:08 +0200)]
s3:libsmb/clitrans: use uint32_t for param and data variables

SMBnttrans uses 32-bit values there.

metze
(cherry picked from commit 428a86c92b5b35e28c7d6921f2999616cdc1bc20)

12 years agos3:libsmb/clitrans: remove unused secondary_request_ctx
Stefan Metzmacher [Tue, 7 Jun 2011 22:37:24 +0000 (00:37 +0200)]
s3:libsmb/clitrans: remove unused secondary_request_ctx

metze
(cherry picked from commit 2ae565b681a6307886b888ee5b576c12916eb0db)

12 years agos3:libsmb/async_smb: add helpers to get and set the seqnum for signing
Stefan Metzmacher [Thu, 9 Jun 2011 09:49:48 +0000 (11:49 +0200)]
s3:libsmb/async_smb: add helpers to get and set the seqnum for signing

This will be used for correct signing in [nt]trans[2][s] requests.

metze
(cherry picked from commit 3dd1ebd21ee99d130f6dd30326ddafe3f00a50d0)

12 years agos3:libsmb/async_smb: don't remove pending requests if the mid is set
Stefan Metzmacher [Wed, 8 Jun 2011 08:20:25 +0000 (10:20 +0200)]
s3:libsmb/async_smb: don't remove pending requests if the mid is set

If the mid was set explicitly, it means the request expects more than
one reply, so leave it in the pending array.

metze
(cherry picked from commit a25936f1b1300a76b08a6bd435bd7ccc388279d5)

12 years agos3:libsmb/async_smb: call cli_smb_req_unset_pending() instead of destructor directly
Stefan Metzmacher [Wed, 8 Jun 2011 12:14:24 +0000 (14:14 +0200)]
s3:libsmb/async_smb: call cli_smb_req_unset_pending() instead of destructor directly

metze
(cherry picked from commit 173fc258e443d97e4ea37f2bee99c21ad15ab484)

12 years agos3:libsmb/async_smb: let cli_smb_recv() initialize output values for one way requests
Stefan Metzmacher [Tue, 7 Jun 2011 22:40:54 +0000 (00:40 +0200)]
s3:libsmb/async_smb: let cli_smb_recv() initialize output values for one way requests

metze
(cherry picked from commit 49cdf171a5198495aead9ace43963e805331e20b)

12 years agos3:libsmb/cli_np_tstream: s/TSTREAM_CLI_NP_BUF_SIZE/TSTREAM_CLI_NP_MAX_BUF_SIZE
Stefan Metzmacher [Tue, 7 Jun 2011 16:49:55 +0000 (18:49 +0200)]
s3:libsmb/cli_np_tstream: s/TSTREAM_CLI_NP_BUF_SIZE/TSTREAM_CLI_NP_MAX_BUF_SIZE

This isn't the fixed buffer size anymore, as we use dynamic beffer
it's just the maximum size.

metze
(cherry picked from commit 957cfd23e1781e342edde07fc01dbec279088afa)

The last 3 patches address bug #8195 (rpc client code doesn't work against NT4,
when we need to fragment requests).

12 years agos3:libsmb:cli_np_tstream: use dynamic talloc buffers
Stefan Metzmacher [Tue, 7 Jun 2011 16:45:54 +0000 (18:45 +0200)]
s3:libsmb:cli_np_tstream: use dynamic talloc buffers

Having 8192 bytes on an idle connection is a bit to much,
so we better use dynamic buffers using talloc, which also
avoids a memcpy in the common SMBtrans readv codepath.

metze
(cherry picked from commit ad1cf187fdbcd726c6c74085308784fe4ecca883)

12 years agos3:libsmb/cli_np_tstream: use larger buffers to avoid a bug NT4 servers (bug #8195)
Stefan Metzmacher [Tue, 7 Jun 2011 16:27:41 +0000 (18:27 +0200)]
s3:libsmb/cli_np_tstream: use larger buffers to avoid a bug NT4 servers (bug #8195)

NT4 servers return NT_STATUS_PIPE_BUSY if we try a SMBtrans
and the SMBwriteX before hasn't transmited the whole DCERPC fragment.

W2K and above is happy with that.

As a result we try to match the behavior of Windows and older Samba clients,
they use write and read buffers of 4280 bytes instead of 1024 bytes.
On Windows only the SMBtrans based read uses 1024 (while we also use 4280
there).

metze

Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Tue Jun  7 20:25:32 CEST 2011 on sn-devel-104
(cherry picked from commit c3ac298a1fe4f5cada6d09376e2d4a3df271a093)

12 years agos3:librpc/ndr/util.h: add license/copyright header and inclusion guard
Michael Adam [Sun, 12 Jun 2011 22:07:29 +0000 (00:07 +0200)]
s3:librpc/ndr/util.h: add license/copyright header and inclusion guard

The last patches fix bug #8196 (Many (newer) header files don't have copyright /
GPL header comments).

12 years agos3:registry/reg_parse_internal.c: add copyright information
Michael Adam [Fri, 10 Jun 2011 22:20:57 +0000 (00:20 +0200)]
s3:registry/reg_parse_internal.c: add copyright information

12 years agos3:registry/reg_parse_internal.h: add copyright information
Michael Adam [Fri, 10 Jun 2011 22:20:32 +0000 (00:20 +0200)]
s3:registry/reg_parse_internal.h: add copyright information

12 years agosource3/rpc_client/util_netlogon.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:08:17 +0000 (15:08 +0200)]
source3/rpc_client/util_netlogon.h: fix licence/copyright

Guenther

Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Fri Jun 10 16:27:24 CEST 2011 on sn-devel-104
(cherry picked from commit cd16a1be9371448532be7362d3e5d3f2a1ae3df3)

12 years agosource3/rpc_client/init_spoolss.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:08:07 +0000 (15:08 +0200)]
source3/rpc_client/init_spoolss.h: fix licence/copyright

Guenther
(cherry picked from commit 4942aeb9b562f3621cbe6adc8e79366887f0d4b9)

12 years agosource3/rpc_client/init_samr.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:07:57 +0000 (15:07 +0200)]
source3/rpc_client/init_samr.h: fix licence/copyright

Guenther
(cherry picked from commit 054e54e881eeab18387ae6e94cf04ecf205ebe64)

12 years agosource3/rpc_client/init_netlogon.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:07:48 +0000 (15:07 +0200)]
source3/rpc_client/init_netlogon.h: fix licence/copyright

Guenther
(cherry picked from commit f3ca8ff2bfb61cfa4b9ce2e4be93653f7b309351)

12 years agosource3/rpc_client/init_lsa.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:07:39 +0000 (15:07 +0200)]
source3/rpc_client/init_lsa.h: fix licence/copyright

Guenther
(cherry picked from commit 9284036ce17b569c1f2203362eacd99ebc362af6)

12 years agosource3/rpc_client/cli_spoolss.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:07:27 +0000 (15:07 +0200)]
source3/rpc_client/cli_spoolss.h: fix licence/copyright

Guenther
(cherry picked from commit b95b1813b9ab53b9490d8b37af4f6ced7fea7bdb)

12 years agosource3/rpc_client/cli_netlogon.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:07:16 +0000 (15:07 +0200)]
source3/rpc_client/cli_netlogon.h: fix licence/copyright

Guenther
(cherry picked from commit 2d10c48259ec234ae110c60405a9da5e720302cb)

12 years agosource3/printing/pcap.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:07:03 +0000 (15:07 +0200)]
source3/printing/pcap.h: fix licence/copyright

Guenther
(cherry picked from commit ef5bcb6e23093086e1450833745b7e5b7b5d46ee)

12 years agosource3/printing/load.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:06:49 +0000 (15:06 +0200)]
source3/printing/load.h: fix licence/copyright

Guenther
(cherry picked from commit 942b2d5baf4347c796d823ad72754c302b38cdca)

12 years agosource3/libsmb/proto.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:06:36 +0000 (15:06 +0200)]
source3/libsmb/proto.h: fix licence/copyright

Guenther
(cherry picked from commit ed10726abca2194d21ea5174c2ff2cda79db499e)

12 years agosource3/libsmb/nmblib.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:06:27 +0000 (15:06 +0200)]
source3/libsmb/nmblib.h: fix licence/copyright

Guenther
(cherry picked from commit 005930411ccbb2793023d2a4d29bdb536d822aba)

12 years agosource3/libsmb/libsmb.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:06:17 +0000 (15:06 +0200)]
source3/libsmb/libsmb.h: fix licence/copyright

Guenther
(cherry picked from commit 81b5d8538a00181af814e98af83718ef5f413868)

12 years agosource3/libsmb/errormap_wbc.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:06:07 +0000 (15:06 +0200)]
source3/libsmb/errormap_wbc.h: fix licence/copyright

Guenther
(cherry picked from commit c1058ad47607c089ba630b21df1f6b72a24a861c)

12 years agosource3/libsmb/clidgram.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:05:57 +0000 (15:05 +0200)]
source3/libsmb/clidgram.h: fix licence/copyright

Guenther
(cherry picked from commit 1e9f2bdb2f7f9e809dd3044dc94018e0b5b6e8d3)

12 years agosource3/libnet/libnet_join.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:05:47 +0000 (15:05 +0200)]
source3/libnet/libnet_join.h: fix licence/copyright

Guenther
(cherry picked from commit 81f269211a80c17a33ec9f05c7847dd29b8c4251)

12 years agosource3/libads/ldap_schema.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:05:37 +0000 (15:05 +0200)]
source3/libads/ldap_schema.h: fix licence/copyright

Guenther
(cherry picked from commit 183835d05515b5b437bbeff5ff7685a4f08415ad)

12 years agosource3/libads/cldap.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:05:27 +0000 (15:05 +0200)]
source3/libads/cldap.h: fix licence/copyright

Guenther
(cherry picked from commit 59e878ff625989d4d2e04ea017f92d29a40f4c44)

12 years agosource3/libads/ads_status.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:05:18 +0000 (15:05 +0200)]
source3/libads/ads_status.h: fix licence/copyright

Guenther
(cherry picked from commit d5c5aa1c5fcc0e3c74cf1216cce7a8c767a6df2a)

12 years agosource3/libads/ads_ldap_protos.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:05:09 +0000 (15:05 +0200)]
source3/libads/ads_ldap_protos.h: fix licence/copyright

Guenther
(cherry picked from commit f2d4252dfa790b65031fe3221afe89d0e285ebd7)

12 years agosource3/lib/privileges.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:04:59 +0000 (15:04 +0200)]
source3/lib/privileges.h: fix licence/copyright

Guenther
(cherry picked from commit 5672d83b23e89f716300940126bef0a738aa3599)

12 years agosource3/lib/netapi/libnetapi.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:04:48 +0000 (15:04 +0200)]
source3/lib/netapi/libnetapi.h: fix licence/copyright

Guenther
(cherry picked from commit 387ddc2c295e92363c83dcd29353cdd4c56984ab)

12 years agosource3/intl/lang_tdb.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:04:36 +0000 (15:04 +0200)]
source3/intl/lang_tdb.h: fix licence/copyright

Guenther
(cherry picked from commit 3ec4966942dc468cfd6e32bf221d4427cc6aba86)

12 years agosource3/include/smb_ldap.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:04:26 +0000 (15:04 +0200)]
source3/include/smb_ldap.h: fix licence/copyright

Guenther
(cherry picked from commit e14b60c7ee6a76c444f12b8987740602c7b5f1d3)

12 years agosource3/include/smb_krb5.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:04:16 +0000 (15:04 +0200)]
source3/include/smb_krb5.h: fix licence/copyright

Guenther
(cherry picked from commit 769f8793cff7d336ab04442208039f87147388bd)

12 years agosource3/include/mangle.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:04:05 +0000 (15:04 +0200)]
source3/include/mangle.h: fix licence/copyright

Guenther
(cherry picked from commit d357b5ce2a1eeead19760ecfad8c7d2bbf9e7622)

12 years agosource3/include/krb5_protos.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:03:55 +0000 (15:03 +0200)]
source3/include/krb5_protos.h: fix licence/copyright

Guenther
(cherry picked from commit ef84a5b2aafa7c90c2aaff82006a69dec485d2ab)

12 years agosource3/include/krb5_env.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:03:43 +0000 (15:03 +0200)]
source3/include/krb5_env.h: fix licence/copyright

Guenther
(cherry picked from commit 0d7581b22b76774a1ef58a7eeb71df9c5bd69943)

12 years agonsswitch/winbind_client.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:03:31 +0000 (15:03 +0200)]
nsswitch/winbind_client.h: fix licence/copyright

Guenther
(cherry picked from commit 850460c96c6337695dae8e601d4e1aa9d676f32d)

12 years agonsswitch/pam_winbind.h: fix licence/copyright.
Günther Deschner [Fri, 10 Jun 2011 13:02:47 +0000 (15:02 +0200)]
nsswitch/pam_winbind.h: fix licence/copyright.

Guenther
(cherry picked from commit acf9ca5f8f9942a94e06d59cf6759837d9e4171a)

12 years agolibrpc/ndr/ndr_table.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:02:38 +0000 (15:02 +0200)]
librpc/ndr/ndr_table.h: fix licence/copyright

Guenther
(cherry picked from commit 768ed8b98517d0146317fd409ccaede3e53942ef)

12 years agolibrpc/ndr/ndr_spoolss_buf.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:02:26 +0000 (15:02 +0200)]
librpc/ndr/ndr_spoolss_buf.h: fix licence/copyright

Guenther
(cherry picked from commit 8b75b65b36f79a4d94b11d3fc599d3c884a335e0)

12 years agolibrpc/ndr/ndr_dns.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:02:16 +0000 (15:02 +0200)]
librpc/ndr/ndr_dns.h: fix licence/copyright

Guenther
(cherry picked from commit 4dadee3adf4deb212f14c0a574dc0e91baa6589a)

12 years agolibrpc/ndr/ndr_compression.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:02:06 +0000 (15:02 +0200)]
librpc/ndr/ndr_compression.h: fix licence/copyright

Guenther
(cherry picked from commit e9e2f3034e8771b36cfbd19a661724a6039eaca4)

12 years agolibrpc/ndr/ndr_backupkey.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:01:56 +0000 (15:01 +0200)]
librpc/ndr/ndr_backupkey.h: fix licence/copyright

Guenther
(cherry picked from commit cfa1507610992b4a3caeb6d35b16ccecf7b86939)

12 years agolibds/common/flag_mapping.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:01:38 +0000 (15:01 +0200)]
libds/common/flag_mapping.h: fix licence/copyright

Guenther
(cherry picked from commit 76f0bf61efb8bd2a1d32a5d150f592f6fb72962c)

12 years agolibcli/smbreadline/smbreadline.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:01:27 +0000 (15:01 +0200)]
libcli/smbreadline/smbreadline.h: fix licence/copyright

Guenther
(cherry picked from commit faf73c72af6a3f66fda7dee3cc2ae9b69b472586)

12 years agolibcli/nbt/nbt_proto.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:01:03 +0000 (15:01 +0200)]
libcli/nbt/nbt_proto.h: fix licence/copyright

Guenther
(cherry picked from commit d41519f99e784f934e025f6d982e9ed681a4adc7)

12 years agolibcli/ldap/ldap_ndr.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:00:48 +0000 (15:00 +0200)]
libcli/ldap/ldap_ndr.h: fix licence/copyright

Guenther
(cherry picked from commit 218273841cd4180dbdb662e84d2337eaa03cea7d)

12 years agolibcli/auth/msrpc_parse.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:00:32 +0000 (15:00 +0200)]
libcli/auth/msrpc_parse.h: fix licence/copyright

Guenther
(cherry picked from commit f04b673aba26404fbf2c19eb57262fd1d9f3fd9d)

12 years agolib/util/wrap_xattr.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 13:00:10 +0000 (15:00 +0200)]
lib/util/wrap_xattr.h: fix licence/copyright

Guenther
(cherry picked from commit d228fc35f38b77877f0fd07b415df87d4ccdb812)

12 years agolib/util/util_tdb.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 12:59:58 +0000 (14:59 +0200)]
lib/util/util_tdb.h: fix licence/copyright

Guenther
(cherry picked from commit eaa400216570403e67f7f06db509ce90fba02c13)

12 years agolib/util/util_ldb.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 12:59:48 +0000 (14:59 +0200)]
lib/util/util_ldb.h: fix licence/copyright

Guenther
(cherry picked from commit 4fe4487cd9391cac813ab94d7002eac6dc722f4c)

12 years agolib/util/time.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 12:59:35 +0000 (14:59 +0200)]
lib/util/time.h: fix licence/copyright

Guenther
(cherry picked from commit 74610109ac3140713140038d10df644024796907)

12 years agolib/util/data_blob.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 12:59:23 +0000 (14:59 +0200)]
lib/util/data_blob.h: fix licence/copyright

Guenther
(cherry picked from commit a602cb2a0a0bc19121232444117486d8286e0af9)

12 years agoauth/auth_sam_reply.h: fix licence/copyright
Günther Deschner [Fri, 10 Jun 2011 12:56:50 +0000 (14:56 +0200)]
auth/auth_sam_reply.h: fix licence/copyright

Guenther
(cherry picked from commit 9211f232aa597ccb5802df24c57f3eb03904ec04)

12 years agos3:passdb: add GPL/copyright header to machine_sid.h (cherry picked from commit c0fc7...
Michael Adam [Tue, 31 May 2011 12:32:40 +0000 (14:32 +0200)]
s3:passdb: add GPL/copyright header to machine_sid.h (cherry picked from commit c0fc7aa129c25664c76b3fdb4b9150c63fe3dd70)

12 years agos3:nmbd: add _NMBD_NMBD_H_ guard to nmbd.h (cherry picked from commit fdd225c3e41ed5a...
Michael Adam [Tue, 31 May 2011 11:30:34 +0000 (13:30 +0200)]
s3:nmbd: add _NMBD_NMBD_H_ guard to nmbd.h (cherry picked from commit fdd225c3e41ed5a81ef02d39ac037818bde49c03)

12 years agos3:nmbd: add GPL/Copyright header to nmbd.h (cherry picked from commit 75cfafd69864fc...
Michael Adam [Tue, 31 May 2011 11:29:34 +0000 (13:29 +0200)]
s3:nmbd: add GPL/Copyright header to nmbd.h (cherry picked from commit 75cfafd69864fccacd1e6c3ca8d27b42a48dbe1c)

12 years agos3:rpc_server: add _RPC_SERVER_SRV_ACCESS_CHECK_H_ guard to srv_access_check.h (cherr...
Michael Adam [Tue, 31 May 2011 11:25:34 +0000 (13:25 +0200)]
s3:rpc_server: add _RPC_SERVER_SRV_ACCESS_CHECK_H_ guard to srv_access_check.h (cherry picked from commit e40331552137f513c6c2404d96adcf421212ec86)

12 years agos3:rpc_server: add GPL/Copyright header to rpc_server/srv_access_check.h (cherry...
Michael Adam [Tue, 31 May 2011 11:24:24 +0000 (13:24 +0200)]
s3:rpc_server: add GPL/Copyright header to rpc_server/srv_access_check.h (cherry picked from commit 942ae874b85570f44b3257c8d229792ede7f8fd9)

12 years agos3: add _LIB_IDMAP_CACHE_H_ guard to lib/idmap_cache.h (cherry picked from commit...
Michael Adam [Tue, 31 May 2011 11:19:52 +0000 (13:19 +0200)]
s3: add _LIB_IDMAP_CACHE_H_ guard to lib/idmap_cache.h (cherry picked from commit c2887f060954bd0e77bc6f3ac8fedec38e26c168)

12 years agos3: add GPL/Copyright header to lib/idmap_cache.h (cherry picked from commit 2b8803d4...
Michael Adam [Tue, 31 May 2011 11:18:51 +0000 (13:18 +0200)]
s3: add GPL/Copyright header to lib/idmap_cache.h (cherry picked from commit 2b8803d458465508d0f4299248d858b9c393323e)

12 years agos3:lib/eventlog/proto.h: add _LIB_EVENTLOG_PROTO_H_ guard (cherry picked from commit...
Michael Adam [Tue, 31 May 2011 05:32:15 +0000 (07:32 +0200)]
s3:lib/eventlog/proto.h: add _LIB_EVENTLOG_PROTO_H_ guard (cherry picked from commit 36feb8a240a7f061e25223364c1f7ca8476a029f)

12 years agos3:lib/eventlog/proto.h: add GPL/Copyright header (cherry picked from commit 00530e3d...
Michael Adam [Tue, 31 May 2011 05:31:14 +0000 (07:31 +0200)]
s3:lib/eventlog/proto.h: add GPL/Copyright header (cherry picked from commit 00530e3d0166641a4f9716067e3c5d1146b0db17)

12 years agos3:libgpo/gpo_proto.h: add _LIBGPO_GPO_PROTO_H_ guard (cherry picked from commit...
Michael Adam [Mon, 30 May 2011 22:45:57 +0000 (00:45 +0200)]
s3:libgpo/gpo_proto.h: add _LIBGPO_GPO_PROTO_H_ guard (cherry picked from commit 6ef8122cba3566d4ed177612066cbbe1b8684677)

12 years agos3:libgpo/gpo_proto.h: add GPL/Copyright header (cherry picked from commit 59950faddc...
Michael Adam [Mon, 30 May 2011 22:45:06 +0000 (00:45 +0200)]
s3:libgpo/gpo_proto.h: add GPL/Copyright header (cherry picked from commit 59950faddc898ea97171d2eac5759314cc1cbeb9)

12 years agos3:libads/kerberos_proto.h: add _LIBADS_KERBEROS_PROTO_H_ guard (cherry picked from...
Michael Adam [Mon, 30 May 2011 22:39:09 +0000 (00:39 +0200)]
s3:libads/kerberos_proto.h: add _LIBADS_KERBEROS_PROTO_H_ guard (cherry picked from commit 4c542015a1a36a230a1a5b6f4ba6b643494e1185)

12 years agos3:libads/kerberos_proto.h: add GPL/Copyright header (cherry picked from commit 6bf32...
Michael Adam [Mon, 30 May 2011 22:38:18 +0000 (00:38 +0200)]
s3:libads/kerberos_proto.h: add GPL/Copyright header (cherry picked from commit 6bf3228f2850b2960276f683e51ccfd6c952a62d)

12 years agos3:libads/ads_proto.h: add _LIBADS_ADS_PROTO_H_ guard (cherry picked from commit...
Michael Adam [Mon, 30 May 2011 22:34:17 +0000 (00:34 +0200)]
s3:libads/ads_proto.h: add _LIBADS_ADS_PROTO_H_ guard (cherry picked from commit eb5db22771d1c700f881f879b98ae08c69d2203b)

12 years agos3:libads/ads_proto.h: add GPL/Copyright header (cherry picked from commit 6e9c055ce2...
Michael Adam [Mon, 30 May 2011 22:33:13 +0000 (00:33 +0200)]
s3:libads/ads_proto.h: add GPL/Copyright header (cherry picked from commit 6e9c055ce28d66be76957dc0bde87655190bc622)

12 years agos3:nmbd/nmbd_proto.h: add GPL/Copyright header (cherry picked from commit d8f269feefc...
Michael Adam [Mon, 30 May 2011 22:29:17 +0000 (00:29 +0200)]
s3:nmbd/nmbd_proto.h: add GPL/Copyright header (cherry picked from commit d8f269feefc3891c01788d5c74cf0954702c6022)

12 years agos3:winbindd/idmap_proto.h: add _WINBINDD_IDMAP_PROTO_H_ guard (cherry picked from...
Michael Adam [Mon, 30 May 2011 22:25:05 +0000 (00:25 +0200)]
s3:winbindd/idmap_proto.h: add _WINBINDD_IDMAP_PROTO_H_ guard (cherry picked from commit b88d80a97572a9d7730830f09b25a7d6dc655653)

12 years agos3:winbindd/idmap_proto.h: add GPL/Copyright header (cherry picked from commit 88078c...
Michael Adam [Mon, 30 May 2011 22:23:46 +0000 (00:23 +0200)]
s3:winbindd/idmap_proto.h: add GPL/Copyright header (cherry picked from commit 88078c856976ebcad68251129ddc0556663dcf9c)

12 years agos3:groupdb/proto.h: add _GROUPDB_PROTO_H_ guard (cherry picked from commit 447f0d356b...
Michael Adam [Mon, 30 May 2011 22:19:22 +0000 (00:19 +0200)]
s3:groupdb/proto.h: add _GROUPDB_PROTO_H_ guard (cherry picked from commit 447f0d356b4cef3e8501923d040146e782022d44)

12 years agos3:groupdb/proto.h: add GPL/Copyright header (cherry picked from commit f2cbced75e33c...
Michael Adam [Mon, 30 May 2011 22:18:26 +0000 (00:18 +0200)]
s3:groupdb/proto.h: add GPL/Copyright header (cherry picked from commit f2cbced75e33c5467672b8eb5c9bc2fc82a2f7da)

12 years agos3:smbd/proto.h: add _SMBD_PROTO_H_ guard (cherry picked from commit 2e6f8f7bdadd4b6e...
Michael Adam [Mon, 30 May 2011 22:13:15 +0000 (00:13 +0200)]
s3:smbd/proto.h: add _SMBD_PROTO_H_ guard (cherry picked from commit 2e6f8f7bdadd4b6e8b8c9ff2adf3dc1275c50430)

12 years agos3:smbd/proto.h: add GPL/Copyright header (cherry picked from commit e1bad49f3e6490ac...
Michael Adam [Mon, 30 May 2011 22:12:27 +0000 (00:12 +0200)]
s3:smbd/proto.h: add GPL/Copyright header (cherry picked from commit e1bad49f3e6490ac7ff28b7bf8ddb8fb1447c7bd)

12 years agos3:locking/proto.h: add _LOCKING_PROTO_H_ guard (cherry picked from commit ff82f77796...
Michael Adam [Mon, 30 May 2011 22:10:29 +0000 (00:10 +0200)]
s3:locking/proto.h: add _LOCKING_PROTO_H_ guard (cherry picked from commit ff82f77796f0d867089962f7970efbe53c51289d)

12 years agos3:locking/proto.h: add GPL/Copyright header (cherry picked from commit 93b8e90b5beb5...
Michael Adam [Mon, 30 May 2011 22:09:28 +0000 (00:09 +0200)]
s3:locking/proto.h: add GPL/Copyright header (cherry picked from commit 93b8e90b5beb5704807834bb710f3b4f303ba5a8)

12 years agos3:auth/proto.h: add _AUTH_PROTO_H_ guard (cherry picked from commit 9cc1410718ae16bd...
Michael Adam [Mon, 30 May 2011 21:57:23 +0000 (23:57 +0200)]
s3:auth/proto.h: add _AUTH_PROTO_H_ guard (cherry picked from commit 9cc1410718ae16bd30a7aa24878901dd70c19f75)

Conflicts:

source3/auth/proto.h

12 years agos3:auth/proto.h: add GPL/Copyright header (cherry picked from commit 1b7077204d30c415...
Michael Adam [Mon, 30 May 2011 21:54:36 +0000 (23:54 +0200)]
s3:auth/proto.h: add GPL/Copyright header (cherry picked from commit 1b7077204d30c4151662cf2f4547bf22baaae6fe)

12 years agos3:passdb/proto.h: add _PASSDB_PROTO_H_ guard (cherry picked from commit 7d40c8869517...
Michael Adam [Mon, 30 May 2011 21:42:02 +0000 (23:42 +0200)]
s3:passdb/proto.h: add _PASSDB_PROTO_H_ guard (cherry picked from commit 7d40c88695173e93606546e895731f66b87381d2)