diff options
author | Luke Leighton <lkcl@samba.org> | 1998-11-13 20:19:06 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-11-13 20:19:06 +0000 |
commit | 3a31d509a883e321784154ed6c4e0b6bc21673c4 (patch) | |
tree | ae0b4e16e0b8414d0190f9f6defb7b11b2ec8b75 /source3/script | |
parent | d3e6aa666de239546787adc500c6633666bd8d84 (diff) | |
download | samba-3a31d509a883e321784154ed6c4e0b6bc21673c4.tar.gz samba-3a31d509a883e321784154ed6c4e0b6bc21673c4.tar.bz2 samba-3a31d509a883e321784154ed6c4e0b6bc21673c4.zip |
LOCAL_GRP and DOMAIN_GRP are return types
(This used to be commit 887063e421d476fe2c2f6809750af3bfb020a85c)
Diffstat (limited to 'source3/script')
-rw-r--r-- | source3/script/mkproto.awk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/script/mkproto.awk b/source3/script/mkproto.awk index fa4986ba6b..d1cbf5b667 100644 --- a/source3/script/mkproto.awk +++ b/source3/script/mkproto.awk @@ -94,6 +94,10 @@ END { gotstart = 1; } + if( $0 ~ /^LOCAL_GRP|^DOMAIN_GRP/ ) { + gotstart = 1; + } + if( $0 ~ /^long|^char|^uint|^struct|^BOOL|^void|^time|^smb_shm_offset_t|^shm_offset_t|^enum remote_arch_types|^FILE|^SMB_OFF_T|^size_t|^ssize_t|^SMB_BIG_UINT/ ) { gotstart = 1; } |