Displaying 1 result from an estimated 1 matches for "xmlsam_add_sam_account".
2004 Sep 16
1
how to submit patches ? (patch for pdb_xml.c included)
...patch ?
Cheers,
Ilia Chipitsine
-------------- next part --------------
--- pdb_xml.c.orig Tue Aug 31 12:12:02 2004
+++ pdb_xml.c Tue Aug 31 12:12:07 2004
@@ -373,6 +373,7 @@
fstring sid_str;
xmlNodePtr cur, user, pass, root;
pdb_xml *data;
+ char *fullname_utf8;
DEBUG(10, ("xmlsam_add_sam_account called!\n"));
@@ -427,8 +428,14 @@
if (pdb_get_nt_username(u) && strcmp(pdb_get_nt_username(u), ""))
xmlNewChild(user, data->ns, "nt_username", pdb_get_nt_username(u));
- if (pdb_get_fullname(u) && strcmp(pdb_get_fullname(u), ""))
- xm...