The branch, master has been updated
       via  9741cb7638d4da777aa7dfa0eb7618b26795a657 (commit)
       via  ee1fe382d662998370e66d08bcebbc153fca7b5a (commit)
       via  50347d6ac061e735b2dd8874d00c663b9f6aeb59 (commit)
       via  64bfa26f99b91a84f9fa241a440b6d7d5a8847ae (commit)
      from  ea2b9e0fb1dfd433e2dd054272f4ab8a37378178 (commit)

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


- Log -----------------------------------------------------------------
commit 9741cb7638d4da777aa7dfa0eb7618b26795a657
Author: Michael Adam <[email protected]>
Date:   Fri Sep 11 14:54:30 2009 +0200

    talloc:mksyms: allow characters after closing functions parenthesis.
    
    Michael

commit ee1fe382d662998370e66d08bcebbc153fca7b5a
Author: Michael Adam <[email protected]>
Date:   Fri Sep 11 14:54:02 2009 +0200

    talloc:mksyms: allow double pointer return value of functions.
    
    Michael

commit 50347d6ac061e735b2dd8874d00c663b9f6aeb59
Author: Michael Adam <[email protected]>
Date:   Fri Sep 11 15:36:57 2009 +0200

    s3:mksyms: fix spelling...
    
    Michael

commit 64bfa26f99b91a84f9fa241a440b6d7d5a8847ae
Author: Michael Adam <[email protected]>
Date:   Fri Sep 11 15:36:34 2009 +0200

    tevent:mksyms: fix spelling...
    
    Michael

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

Summary of changes:
 lib/tevent/script/mksyms.awk |    2 +-
 lib/tevent/script/mksyms.sh  |    2 +-
 source3/script/mksyms.awk    |    8 ++++----
 source3/script/mksyms.sh     |    2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/tevent/script/mksyms.awk b/lib/tevent/script/mksyms.awk
index ca14da0..94a405c 100644
--- a/lib/tevent/script/mksyms.awk
+++ b/lib/tevent/script/mksyms.awk
@@ -4,7 +4,7 @@
 # Extract symbols to export from C-header files.
 # output in version-script format for linking shared libraries.
 #
-# Copyright (C) 2008 Micheal Adam <[email protected]>
+# Copyright (C) 2008 Michael Adam <[email protected]>
 #
 BEGIN {
        inheader=0;
diff --git a/lib/tevent/script/mksyms.sh b/lib/tevent/script/mksyms.sh
index 714d55a..7fb4031 100755
--- a/lib/tevent/script/mksyms.sh
+++ b/lib/tevent/script/mksyms.sh
@@ -8,7 +8,7 @@
 #
 # This is the shell wrapper for the mksyms.awk core script.
 #
-# Copyright (C) 2008 Micheal Adam <[email protected]>
+# Copyright (C) 2008 Michael Adam <[email protected]>
 #
 
 LANG=C; export LANG
diff --git a/source3/script/mksyms.awk b/source3/script/mksyms.awk
index a30bea4..94a405c 100644
--- a/source3/script/mksyms.awk
+++ b/source3/script/mksyms.awk
@@ -4,7 +4,7 @@
 # Extract symbols to export from C-header files.
 # output in version-script format for linking shared libraries.
 #
-# Copyright (C) 2008 Micheal Adam <[email protected]>
+# Copyright (C) 2008 Michael Adam <[email protected]>
 #
 BEGIN {
        inheader=0;
@@ -28,7 +28,7 @@ END {
                current_file=FILENAME
        }
        if (inheader) {
-               if (match($0,"[)][ \t]*[;][ \t]*$")) {
+               if (match($0,"[)][^()]*[;][ \t]*$")) {
                        inheader = 0;
                }
                next;
@@ -57,10 +57,10 @@ END {
        }
 }
 
-/[_A-Za-z0-9]+[ \t]*[(].*[)][ \t]*;[ \t]*$/ {
+/[_A-Za-z0-9]+[ \t]*[(].*[)][^()]*;[ \t]*$/ {
        sub(/[(].*$/, "");
        gsub(/[^ \t]+[ \t]+/, "");
-       gsub(/^[*]/, "");
+       gsub(/^[*]+/, "");
        printf "\t\t%s;\n",$0;
        next;
 }
diff --git a/source3/script/mksyms.sh b/source3/script/mksyms.sh
index 714d55a..7fb4031 100755
--- a/source3/script/mksyms.sh
+++ b/source3/script/mksyms.sh
@@ -8,7 +8,7 @@
 #
 # This is the shell wrapper for the mksyms.awk core script.
 #
-# Copyright (C) 2008 Micheal Adam <[email protected]>
+# Copyright (C) 2008 Michael Adam <[email protected]>
 #
 
 LANG=C; export LANG


-- 
Samba Shared Repository

Reply via email to