summaryrefslogtreecommitdiffstats
path: root/lasso
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-08-18 16:22:32 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-08-18 16:22:32 +0000
commitd2e417e034f35c1875e792f12617fe5457e2de9a (patch)
tree34691c5e74bab13237eef8135aea3930e4f8282f /lasso
parente54d25e2b473746e8cfa5793ae09ce5b983053b2 (diff)
downloadlasso-d2e417e034f35c1875e792f12617fe5457e2de9a.tar.gz
lasso-d2e417e034f35c1875e792f12617fe5457e2de9a.tar.xz
lasso-d2e417e034f35c1875e792f12617fe5457e2de9a.zip
Added a '%s' in LASSO_DS_ERROR_SIGNATURE_FAILED message
Diffstat (limited to 'lasso')
-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));
}
}