diff options
author | Gerald Carter <jerry@samba.org> | 2003-07-14 19:51:34 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-07-14 19:51:34 +0000 |
commit | 3d293027563b36411b7f84ed9d8f47f926271c6f (patch) | |
tree | 559b85d9bb1cc631ed64981833fada9e98854f81 /source/script | |
parent | 3f63bcb47182f69a7524bf9fcd0198aa116a9c45 (diff) | |
download | samba-3d293027563b36411b7f84ed9d8f47f926271c6f.tar.gz samba-3d293027563b36411b7f84ed9d8f47f926271c6f.tar.xz samba-3d293027563b36411b7f84ed9d8f47f926271c6f.zip |
fix cache coherency bug in print handle print_info_2 cache.
Needs to be rewritten to use a reference counter, but this
will work for now.
also the memory allocation in the printing code needs to be cleaned
up to use talloc exclusively.
Diffstat (limited to 'source/script')
-rw-r--r-- | source/script/mkproto.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/script/mkproto.awk b/source/script/mkproto.awk index e91b42a73ae..6a45a70cc30 100644 --- a/source/script/mkproto.awk +++ b/source/script/mkproto.awk @@ -146,7 +146,7 @@ END { gotstart = 1; } - if( $0 ~ /^WINBINDD_PW|^WINBINDD_GR/ ) { + if( $0 ~ /^WINBINDD_PW|^WINBINDD_GR|^NT_PRINTER_INFO_LEVEL_2/ ) { gotstart = 1; } |