diff options
author | Volker Lendecke <vl@samba.org> | 2009-01-07 18:44:52 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-01-08 22:29:54 +0100 |
commit | 84292022bf801112d2cb7f0f8512cf00079def20 (patch) | |
tree | 465b8f7c2f51769cf4a15d2b82e2ba4465bdfe40 /source3/include | |
parent | 825500f5dafb848b95f5a5ea6595cc24f377bc3a (diff) | |
download | samba-84292022bf801112d2cb7f0f8512cf00079def20.tar.gz samba-84292022bf801112d2cb7f0f8512cf00079def20.tar.xz samba-84292022bf801112d2cb7f0f8512cf00079def20.zip |
Now that all policy_handle free_fn's are just TALLOC_FREE, dump free_fn
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/ntdomain.h | 1 | ||||
-rw-r--r-- | source3/include/proto.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/source3/include/ntdomain.h b/source3/include/ntdomain.h index bffa158feaa..3f501550da7 100644 --- a/source3/include/ntdomain.h +++ b/source3/include/ntdomain.h @@ -123,7 +123,6 @@ struct policy { POLICY_HND pol_hnd; void *data_ptr; - void (*free_fn)(void *); }; struct handle_list { diff --git a/source3/include/proto.h b/source3/include/proto.h index afc207b6f60..96b2e26d30b 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -6188,7 +6188,7 @@ NTSTATUS _eventlog_read_eventlog( pipes_struct * p, /* The following definitions come from rpc_server/srv_lsa_hnd.c */ bool init_pipe_handle_list(pipes_struct *p, const char *pipe_name); -bool create_policy_hnd(pipes_struct *p, POLICY_HND *hnd, void (*free_fn)(void *), void *data_ptr); +bool create_policy_hnd(pipes_struct *p, POLICY_HND *hnd, void *data_ptr); bool find_policy_by_hnd(pipes_struct *p, POLICY_HND *hnd, void **data_p); bool close_policy_hnd(pipes_struct *p, POLICY_HND *hnd); void close_policy_by_pipe(pipes_struct *p); |