summaryrefslogtreecommitdiff
path: root/source3/registry/reg_parse_prs.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/registry/reg_parse_prs.c')
-rw-r--r--source3/registry/reg_parse_prs.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/source3/registry/reg_parse_prs.c b/source3/registry/reg_parse_prs.c
index 023fd0c400..14aa3fac01 100644
--- a/source3/registry/reg_parse_prs.c
+++ b/source3/registry/reg_parse_prs.c
@@ -330,28 +330,6 @@ void prs_switch_type(prs_struct *ps, bool io)
}
/*******************************************************************
- Stream a uint8.
- ********************************************************************/
-
-bool prs_uint8(const char *name, prs_struct *ps, int depth, uint8 *data8)
-{
- char *q = prs_mem_get(ps, 1);
- if (q == NULL)
- return False;
-
- if (UNMARSHALLING(ps))
- *data8 = CVAL(q,0);
- else
- SCVAL(q,0,*data8);
-
- DEBUGADD(5,("%s%04x %s: %02x\n", tab_depth(5,depth), ps->data_offset, name, *data8));
-
- ps->data_offset += 1;
-
- return True;
-}
-
-/*******************************************************************
Stream a uint16.
********************************************************************/