diff options
Diffstat (limited to 'source/script/mkproto.awk')
-rw-r--r-- | source/script/mkproto.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/script/mkproto.awk b/source/script/mkproto.awk index 68720258ec0..af230400935 100644 --- a/source/script/mkproto.awk +++ b/source/script/mkproto.awk @@ -24,7 +24,7 @@ END { # use_ldap_define = 0; # } print "" - print "/*The following definitions come from ",FILENAME," */" + print "/* The following definitions come from",FILENAME," */" print "" current_file=FILENAME } @@ -120,7 +120,7 @@ END { gotstart = 1; } - if( $0 ~ /^SAM_ACCT_INFO_NODE|^SMB_ACL_T|^NTSTATUS|^WERROR|^CLI_POLICY_HND/ ) { + if( $0 ~ /^SAM_ACCT_INFO_NODE|^SMB_ACL_T|^NTSTATUS|^WERROR|^CLI_POLICY_HND|^DATA_BLOB/ ) { gotstart = 1; } |