diff options
author | Jeremy Allison <jra@samba.org> | 2007-11-08 15:13:41 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-11-08 15:13:41 -0800 |
commit | 976b0ec487720982e456f8c3634be3df64882dae (patch) | |
tree | f7a9883ae8988f42ef98aa612e433e0c9613a03b /source3/script | |
parent | e501c0cd44116ee6e42c14100fea526558c37cb2 (diff) | |
parent | 128fa582a62ad3e145c2bda93e4f939d5f62885f (diff) | |
download | samba-976b0ec487720982e456f8c3634be3df64882dae.tar.gz samba-976b0ec487720982e456f8c3634be3df64882dae.tar.bz2 samba-976b0ec487720982e456f8c3634be3df64882dae.zip |
Merge branch 'v3-2-test' of ssh://jra@git.samba.org/data/git/samba into v3-2-test
(This used to be commit d9335456d23271a4b15b97d24f1b263700a3b9df)
Diffstat (limited to 'source3/script')
-rw-r--r-- | source3/script/mkproto.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/script/mkproto.awk b/source3/script/mkproto.awk index a707378251..ff266321ff 100644 --- a/source3/script/mkproto.awk +++ b/source3/script/mkproto.awk @@ -113,7 +113,7 @@ END { printf "int %s(void);\n", a[2] } -/^static|^extern/ || !/^[a-zA-Z]/ || /[;]/ { +/^static|^extern/ || !/^[a-zA-Z\_]/ || /[;]/ { next; } @@ -151,7 +151,7 @@ END { gotstart = 1; } - if( $0 ~ /^NODE_STATUS_STRUCT|SMB_STRUCT_DIR|ELOG_TDB|codepoint_t/ ) { + if( $0 ~ /^NODE_STATUS_STRUCT|^SMB_STRUCT_DIR|^ELOG_TDB|^codepoint_t|^_PUBLIC_/ ) { gotstart = 1; } |