diff options
author | Stefan Metzmacher <metze@samba.org> | 2017-01-10 15:08:48 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2017-01-11 16:39:21 +0100 |
commit | cfaa3582087f21a6dfc769b36f9d7245f73b25fc (patch) | |
tree | a2a6f6f67129624593c5869472d9e363e971ab86 /nsswitch | |
parent | f16908c454e4350d9b3a321ea78d345f7c7bfd55 (diff) | |
download | samba-cfaa3582087f21a6dfc769b36f9d7245f73b25fc.tar.gz |
nsswitch: remove unused TALLOC_* defines in pam_winbind.h
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Diffstat (limited to 'nsswitch')
-rw-r--r-- | nsswitch/pam_winbind.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/nsswitch/pam_winbind.h b/nsswitch/pam_winbind.h index 6b65c462eaa..d468efbb56a 100644 --- a/nsswitch/pam_winbind.h +++ b/nsswitch/pam_winbind.h @@ -216,10 +216,4 @@ struct pwb_context { struct wbcContext *wbc_ctx; }; -#ifndef TALLOC_FREE -#define TALLOC_FREE(ctx) do { talloc_free(ctx); ctx=NULL; } while(0) -#endif -#define TALLOC_ZERO_P(ctx, type) (type *)_talloc_zero(ctx, sizeof(type), #type) -#define TALLOC_P(ctx, type) (type *)talloc_named_const(ctx, sizeof(type), #type) - #endif /* _NSSWITCH_PAM_WINBIND_H_ */ |