[SCM] Samba Website Repository - branch master updated

Karolin Seeger kseeger at samba.org
Fri Jun 11 02:32:03 MDT 2010


The branch, master has been updated
       via  9a5a446... Add Andrew's patch to fix schannel connections with non-ASCII netbios names.
      from  a5ddd60... Added "Just A Guy Enterprises" at request of hello at justaguy.ca

http://gitweb.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 9a5a4467043f104a30ab561e868fa521700c7218
Author: Karolin Seeger <kseeger at samba.org>
Date:   Fri Jun 11 10:30:39 2010 +0200

    Add Andrew's patch to fix schannel connections with non-ASCII netbios names.
    
    Karolin

-----------------------------------------------------------------------

Summary of changes:
 patches/index.html                                 |   16 ++++++++++
 ...-client-Push-the-domain-and-netbios-name-.patch |   31 ++++++++++++++++++++
 patches/patches-3.0.37/series                      |    1 +
 3 files changed, 48 insertions(+), 0 deletions(-)
 create mode 100644 patches/patches-3.0.37/0001-s3-schannel-client-Push-the-domain-and-netbios-name-.patch
 create mode 100644 patches/patches-3.0.37/series


Changeset truncated at 500 lines:

diff --git a/patches/index.html b/patches/index.html
index 64eeed1..e683948 100755
--- a/patches/index.html
+++ b/patches/index.html
@@ -39,6 +39,22 @@ $ cd source
 
 <table class="real">
   <thead>
+    <tr><th colspan="2"><b>Samba 3.0.37</b></th></tr>
+  </thead>
+  <tbody>
+  <tr>
+    <td><em>Patch</em></td><td><em>Description</em></td>
+  </tr>
+  <tr>
+    <td><a href="/samba/patches/patches-3.0.37/0001-s3-schannel-client-Push-the-domain-and-netbios-name-.patch">Allow non-ASCII netbios names</a></td>
+    <td>Push the domain and netbios name into the DOS charset.</td>
+  </tr>
+  </tbody>
+</table>
+
+<br>
+<table class="real">
+  <thead>
     <tr><th colspan="2"><b>Samba 3.2.15</b></th></tr>
   </thead>
   <tbody>
diff --git a/patches/patches-3.0.37/0001-s3-schannel-client-Push-the-domain-and-netbios-name-.patch b/patches/patches-3.0.37/0001-s3-schannel-client-Push-the-domain-and-netbios-name-.patch
new file mode 100644
index 0000000..f182d56
--- /dev/null
+++ b/patches/patches-3.0.37/0001-s3-schannel-client-Push-the-domain-and-netbios-name-.patch
@@ -0,0 +1,31 @@
+From 51aaf9c6812430975dcd2cf9a632eb8d241ec41e Mon Sep 17 00:00:00 2001
+From: Andrew Bartlett <abartlet at samba.org>
+Date: Thu, 3 Jun 2010 09:35:31 +1000
+Subject: [PATCH] s3:schannel client Push the domain and netbios name into the DOS charset
+
+If the netbios name is not just ASCII, then we have to get it into the
+right character set.
+
+Andrew Bartlett
+---
+ source/rpc_parse/parse_rpc.c |    4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/source/rpc_parse/parse_rpc.c b/source/rpc_parse/parse_rpc.c
+index 2d166c7..7b4b8e8 100644
+--- a/source/rpc_parse/parse_rpc.c
++++ b/source/rpc_parse/parse_rpc.c
+@@ -786,8 +786,8 @@ void init_rpc_auth_schannel_neg(RPC_AUTH_SCHANNEL_NEG *neg,
+ {
+ 	neg->type1 = 0;
+ 	neg->type2 = 0x3;
+-	fstrcpy(neg->domain, domain);
+-	fstrcpy(neg->myname, myname);
++	push_ascii_fstring(neg->domain, domain);
++	push_ascii_fstring(neg->myname, myname);
+ }
+ 
+ /*******************************************************************
+-- 
+1.7.0.1
+
diff --git a/patches/patches-3.0.37/series b/patches/patches-3.0.37/series
new file mode 100644
index 0000000..0399e00
--- /dev/null
+++ b/patches/patches-3.0.37/series
@@ -0,0 +1 @@
+0001-s3-schannel-client-Push-the-domain-and-netbios-name-.patch


-- 
Samba Website Repository


More information about the samba-cvs mailing list