From 0809d5f368fe210b622c0836880734d62ae87661 Mon Sep 17 00:00:00 2001 From: Ben Kibbey Date: Fri, 14 Mar 2008 21:25:09 -0400 Subject: [PATCH] ATTR LIST now separates the attribute name and value with a space rather than a TAB. --- src/commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.c b/src/commands.c index cce6aa7b..62a718d3 100644 --- a/src/commands.c +++ b/src/commands.c @@ -1649,7 +1649,7 @@ static int attribute_list(assuan_context_t ctx, gchar **req) attrlist = pa; an = a->children; - attrlist[i] = g_strdup_printf("%s\t%s", (gchar *)a->name, (gchar *)an->content); + attrlist[i] = g_strdup_printf("%s %s", (gchar *)a->name, (gchar *)an->content); if (!attrlist[i]) { g_strfreev(attrlist); -- 2.11.4.GIT