diff options
author | Volker Lendecke <vl@samba.org> | 2008-02-16 20:29:49 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-02-16 20:31:04 +0100 |
commit | 44bf22911a785c8d28caa26f40bd35ae84cef3f4 (patch) | |
tree | c7f6613709dedbc57f721c31c8c7ad7e61f65bb7 /source3/rpc_parse | |
parent | 033dd7b08bbb4c0817e1c3fb0876f34af839359d (diff) | |
download | samba-44bf22911a785c8d28caa26f40bd35ae84cef3f4.tar.gz samba-44bf22911a785c8d28caa26f40bd35ae84cef3f4.tar.bz2 samba-44bf22911a785c8d28caa26f40bd35ae84cef3f4.zip |
Remove unused code, make fns static
(This used to be commit 5c762c6d57dce1016ebe2613a75b492eeac84c3d)
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r-- | source3/rpc_parse/parse_sec.c | 24 |
1 files changed, 4 insertions, 20 deletions
diff --git a/source3/rpc_parse/parse_sec.c b/source3/rpc_parse/parse_sec.c index 6ea128d3a4..c71b31086a 100644 --- a/source3/rpc_parse/parse_sec.c +++ b/source3/rpc_parse/parse_sec.c @@ -27,28 +27,11 @@ #define DBGC_CLASS DBGC_RPC_PARSE /******************************************************************* - Reads or writes a SEC_ACCESS structure. -********************************************************************/ - -bool sec_io_access(const char *desc, SEC_ACCESS *t, prs_struct *ps, int depth) -{ - if (t == NULL) - return False; - - prs_debug(ps, depth, desc, "sec_io_access"); - depth++; - - if(!prs_uint32("mask", ps, depth, t)) - return False; - - return True; -} - -/******************************************************************* Reads or writes a SEC_ACE structure. ********************************************************************/ -bool sec_io_ace(const char *desc, SEC_ACE *psa, prs_struct *ps, int depth) +static bool sec_io_ace(const char *desc, SEC_ACE *psa, prs_struct *ps, + int depth) { uint32 old_offset; uint32 offset_ace_size; @@ -130,7 +113,8 @@ bool sec_io_ace(const char *desc, SEC_ACE *psa, prs_struct *ps, int depth) for you as it reads them. ********************************************************************/ -bool sec_io_acl(const char *desc, SEC_ACL **ppsa, prs_struct *ps, int depth) +static bool sec_io_acl(const char *desc, SEC_ACL **ppsa, prs_struct *ps, + int depth) { unsigned int i; uint32 old_offset; |