Add iconv_convenience argument to size functions.
[kai/samba-autobuild/.git] / source3 / rpc_parse / parse_sec.c
index c71b31086a4dde832c7396879ffc4a729df1d93d..23c96103811eb19cd77bbd01e5856d9da53cacba 100644 (file)
@@ -275,14 +275,14 @@ bool sec_io_desc(const char *desc, SEC_DESC **ppsd, prs_struct *ps, int depth)
 
                if (psd->owner_sid != NULL) {
                        off_owner_sid = offset;
-                       offset += ndr_size_dom_sid(psd->owner_sid, 0);
+                       offset += ndr_size_dom_sid(psd->owner_sid, NULL, 0);
                } else {
                        off_owner_sid = 0;
                }
 
                if (psd->group_sid != NULL) {
                        off_grp_sid = offset;
-                       offset += ndr_size_dom_sid(psd->group_sid, 0);
+                       offset += ndr_size_dom_sid(psd->group_sid, NULL, 0);
                } else {
                        off_grp_sid = 0;
                }
@@ -410,7 +410,7 @@ bool sec_io_desc_buf(const char *desc, SEC_DESC_BUF **ppsdb, prs_struct *ps, int
        if(!prs_uint32    ("ptr  ", ps, depth, &ptr))
                return False;
 
-       len = ndr_size_security_descriptor(psdb->sd, 0);
+       len = ndr_size_security_descriptor(psdb->sd, NULL, 0);
        if(!prs_uint32_pre("len    ", ps, depth, &len, &off_len))
                return False;