diff options
author | Luke Leighton <lkcl@samba.org> | 1999-11-08 22:00:41 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-11-08 22:00:41 +0000 |
commit | 702b085293af8ffe7a04865db78a36c85beb22ee (patch) | |
tree | 16f0abc1ed8ab201d44d7ceb64ce1281be74e290 /source3/script | |
parent | c6e3fc5838aacde454c4b16436532455c4dd8ecf (diff) | |
download | samba-702b085293af8ffe7a04865db78a36c85beb22ee.tar.gz samba-702b085293af8ffe7a04865db78a36c85beb22ee.tar.bz2 samba-702b085293af8ffe7a04865db78a36c85beb22ee.zip |
preparation for doing a spoolss enum jobs command. had to rewrite
spoolss_enumjobs parsing code to do read / writes not just writes.
(This used to be commit bc659a09f9103eee9616279e27fafacf89dcd9b9)
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 9e4c7de2d6..b286e1f7db 100644 --- a/source3/script/mkproto.awk +++ b/source3/script/mkproto.awk @@ -94,6 +94,10 @@ END { gotstart = 1; } + if( $0 ~ /^JOB_INFO_1|^JOB_INFO_2/ ) { + gotstart = 1; + } + if( $0 ~ /^PRINTER_INFO_1|^PRINTER_INFO_2/ ) { gotstart = 1; } |