diff options
author | Jeremy Allison <jra@samba.org> | 2004-03-19 01:29:14 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2004-03-19 01:29:14 +0000 |
commit | a79b205d9202a61ef5c82f7fccd1513df0290585 (patch) | |
tree | 05130d78759973ef94d3b01503c4b4a9ab6082ca /source3/script | |
parent | 7942c2826b9f1f16246ef284009572427ec44909 (diff) | |
download | samba-a79b205d9202a61ef5c82f7fccd1513df0290585.tar.gz samba-a79b205d9202a61ef5c82f7fccd1513df0290585.tar.bz2 samba-a79b205d9202a61ef5c82f7fccd1513df0290585.zip |
Fix gcc warnings. Fix mkproto with new type.
Jeremy.
(This used to be commit 00fa66df3edeb92ec5efd49bd61f98691e74877a)
Diffstat (limited to 'source3/script')
-rw-r--r-- | source3/script/mkproto.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/mkproto.awk b/source3/script/mkproto.awk index 3835ea3af3..b38f405e0d 100644 --- a/source3/script/mkproto.awk +++ b/source3/script/mkproto.awk @@ -132,7 +132,7 @@ END { gotstart = 1; } - if( $0 ~ /^WINBINDD_PW|^WINBINDD_GR|^NT_PRINTER_INFO_LEVEL_2/ ) { + if( $0 ~ /^WINBINDD_PW|^WINBINDD_GR|^NT_PRINTER_INFO_LEVEL_2|^LOGIN_CACHE/ ) { gotstart = 1; } |