Commit c8d5e261 authored by Jonathan Beck's avatar Jonathan Beck

revert to 60 cols for data base64 encoded buffers

parent a835ed06
......@@ -177,7 +177,7 @@ static void node_to_xml(GNode * node, gpointer xml_struct)
case PLIST_DATA:
tag = XPLIST_DATA;
gchar *valtmp = g_base64_encode(node_data->buff, node_data->length);
val = format_string(valtmp, 68, xstruct->depth);
val = format_string(valtmp, 60, xstruct->depth);
g_free(valtmp);
break;
case PLIST_ARRAY:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment