[SCM] Samba Shared Repository - branch master updated

Andrew Tridgell tridge at samba.org
Mon Sep 6 22:34:05 MDT 2010


The branch, master has been updated
       via  7ca69f7 librpc: bitten by the strncasecmp define again
       via  2d77c76 waf-abi: fixed small uninitialised data on PPC64
      from  73c3932 s4-ldapserver: serialise ldap server operations

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


- Log -----------------------------------------------------------------
commit 7ca69f7462f741860d514a78e3198db634db2a6b
Author: Andrew Tridgell <tridge at samba.org>
Date:   Tue Sep 7 14:33:20 2010 +1000

    librpc: bitten by the strncasecmp define again

commit 2d77c766faabbc0790427f4c49555d4049efdb3b
Author: Andrew Tridgell <tridge at samba.org>
Date:   Tue Sep 7 13:45:46 2010 +1000

    waf-abi: fixed small uninitialised data on PPC64
    
    on PPC64 Linux systems a 'S' line from nm means "small object
    uninitialised data"

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

Summary of changes:
 buildtools/scripts/abi_gen.sh |    2 +-
 librpc/rpc/binding.c          |    1 +
 2 files changed, 2 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/buildtools/scripts/abi_gen.sh b/buildtools/scripts/abi_gen.sh
index e7fec4f..7b4cb12 100755
--- a/buildtools/scripts/abi_gen.sh
+++ b/buildtools/scripts/abi_gen.sh
@@ -10,7 +10,7 @@ cat <<EOF
 set height 0
 set width 0
 EOF
-nm $SHAREDLIB | cut -d' ' -f2- | egrep '^[BDGTRVW]' | grep -v @ | cut -c3- | sort | while read s; do
+nm $SHAREDLIB | cut -d' ' -f2- | egrep '^[BDGTRVWS]' | grep -v @ | cut -c3- | sort | while read s; do
     echo "echo $s: "
     echo p $s
 done
diff --git a/librpc/rpc/binding.c b/librpc/rpc/binding.c
index feff512..42059c0 100644
--- a/librpc/rpc/binding.c
+++ b/librpc/rpc/binding.c
@@ -28,6 +28,7 @@
 #include "librpc/gen_ndr/ndr_misc.h"
 #include "librpc/rpc/dcerpc.h"
 #undef strcasecmp
+#undef strncasecmp
 
 #define MAX_PROTSEQ		10
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list