diff options
author | Tim Potter <tpot@samba.org> | 2002-03-28 04:12:39 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-03-28 04:12:39 +0000 |
commit | 321767cb6607a87598c10be692ad26a17dd30ab4 (patch) | |
tree | 1df7e9ecc6b5de906d03155598930cf5fe2240cd /source3 | |
parent | 740b24658c55fc42826704a8fb0f47aeabaffba6 (diff) | |
download | samba-321767cb6607a87598c10be692ad26a17dd30ab4.tar.gz samba-321767cb6607a87598c10be692ad26a17dd30ab4.tar.bz2 samba-321767cb6607a87598c10be692ad26a17dd30ab4.zip |
Added another return type.
(This used to be commit 9b2777d3bcef92b10cdc43a4c1e90beb48382a17)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/script/mkproto.awk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/script/mkproto.awk b/source3/script/mkproto.awk index 1328a42eac..9b0aa360bc 100644 --- a/source3/script/mkproto.awk +++ b/source3/script/mkproto.awk @@ -14,6 +14,7 @@ BEGIN { } END { + print "" print "#endif /* ",headername," */" } @@ -131,7 +132,7 @@ END { gotstart = 1; } - if( $0 ~ /^SAM_ACCT_INFO_NODE|^SMB_ACL_T|^ADS_MODLIST/ ) { + if( $0 ~ /^SAM_ACCT_INFO_NODE|^SMB_ACL_T|^ADS_MODLIST|^PyObject/ ) { gotstart = 1; } |