(hx509_get_error_string): Put ", " between strings in error message.
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19061 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -118,7 +118,8 @@ hx509_get_error_string(hx509_context context, int error_code)
|
||||
}
|
||||
|
||||
for (msg = context->error; msg; msg = msg->next)
|
||||
p = rk_strpoolprintf(p, "%s", msg->msg);
|
||||
p = rk_strpoolprintf(p, "%s%s", msg->msg,
|
||||
msg->next != NULL ? "; " : "");
|
||||
|
||||
return rk_strpoolcollect(p);
|
||||
}
|
||||
|
Reference in New Issue
Block a user