summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lasso/xml/errors.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lasso/xml/errors.c b/lasso/xml/errors.c
index b474cc57..535d47c1 100644
--- a/lasso/xml/errors.c
+++ b/lasso/xml/errors.c
@@ -51,7 +51,7 @@ lasso_strerror(int error_code)
case LASSO_DS_ERROR_CERTIFICATE_LOAD_FAILED:
return "Failed to load certificate %s.\n";
case LASSO_DS_ERROR_SIGNATURE_FAILED:
- return "Failed to sign the node.\n";
+ return "Failed to sign the node %s.\n";
case LASSO_DS_ERROR_SIGNATURE_NOTFOUND:
return "Signature element not found in %s.\n";
case LASSO_DS_ERROR_KEYS_MNGR_CREATION_FAILED:
@@ -74,7 +74,7 @@ lasso_strerror(int error_code)
return "The error return location should be either NULL or contains a NULL error.\n";
default:
- sprintf(msg, "Undefined error code %d !!!", error_code);
+ sprintf(msg, "Undefined error code %d.", error_code);
return(strdup(msg));
}
}