diff options
author | Simo Sorce <idra@samba.org> | 2003-10-06 01:38:46 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2003-10-06 01:38:46 +0000 |
commit | c78f2d0bd15ecd2ba643bb141cc35a3405787aa1 (patch) | |
tree | 8a29f6f2f0aa220637bf3297abdb95a110120cba /source/lib/talloc.c | |
parent | 096b997588880991af8e07034cc4f041daa87b97 (diff) | |
download | samba-c78f2d0bd15ecd2ba643bb141cc35a3405787aa1.tar.gz samba-c78f2d0bd15ecd2ba643bb141cc35a3405787aa1.tar.xz samba-c78f2d0bd15ecd2ba643bb141cc35a3405787aa1.zip |
split some security related functions in their own files.
(no need to include all of smbd files to use some basic sec functions)
also minor compile fixes
couldn't compile to test these due to some kerberos problems wirh 3.0,
but on HEAD they're working well, so I suppose it's ok to commit
Diffstat (limited to 'source/lib/talloc.c')
-rw-r--r-- | source/lib/talloc.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/source/lib/talloc.c b/source/lib/talloc.c index b6c8b2efdf0..485dc28f31d 100644 --- a/source/lib/talloc.c +++ b/source/lib/talloc.c @@ -54,27 +54,6 @@ #include "includes.h" -struct talloc_chunk { - struct talloc_chunk *next; - size_t size; - void *ptr; -}; - - -struct talloc_ctx { - struct talloc_chunk *list; - size_t total_alloc_size; - - /** The name recorded for this pool, if any. Should describe - * the purpose for which it was allocated. The string is - * allocated within the pool. **/ - char *name; - - /** Pointer to the next allocate talloc pool, so that we can - * summarize all talloc memory usage. **/ - struct talloc_ctx *next_ctx; -}; - /** * Start of linked list of all talloc pools. |