diff options
author | Jeremy Allison <jra@samba.org> | 2001-03-02 00:20:43 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-03-02 00:20:43 +0000 |
commit | 74294f5a967cbcdaa4d502bda3b6147d912f8411 (patch) | |
tree | 34bf09b36ef0e0110995aafbf6af748d55c6878e /source3/include | |
parent | 1b476b12d914e57a1b46864d0e12c0ba054af949 (diff) | |
download | samba-74294f5a967cbcdaa4d502bda3b6147d912f8411.tar.gz samba-74294f5a967cbcdaa4d502bda3b6147d912f8411.tar.bz2 samba-74294f5a967cbcdaa4d502bda3b6147d912f8411.zip |
Move to talloc controlled NT forms.
Jeremy.
(This used to be commit 3e190e693375c6032dd64bf8dd3c90f90dc4e3b4)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index d9154cca6f..ff004bbabd 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1962,9 +1962,9 @@ BOOL parse_lpq_entry(int snum,char *line, #if OLD_NTDOMAIN BOOL nt_printing_init(void); -int get_ntforms(nt_forms_struct **list); +int get_ntforms(TALLOC_CTX *ctx, nt_forms_struct **list); int write_ntforms(nt_forms_struct **list, int number); -BOOL add_a_form(nt_forms_struct **list, const FORM *form, int *count); +BOOL add_a_form(TALLOC_CTX *ctx, nt_forms_struct **list, const FORM *form, int *count); BOOL delete_a_form(nt_forms_struct **list, UNISTR2 *del_name, int *count, uint32 *ret); void update_a_form(nt_forms_struct **list, const FORM *form, int count); int get_ntdrivers(fstring **list, char *architecture, uint32 version); |