From 5f5367cf6261f9191498df1d92a71c963d53de78 Mon Sep 17 00:00:00 2001 From: Michael Rash Date: Tue, 19 Nov 2013 23:14:46 -0500 Subject: [PATCH] [server] minor error code text typo fixes --- server/fwknopd_errors.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/fwknopd_errors.c b/server/fwknopd_errors.c index 19de4101..feba7605 100644 --- a/server/fwknopd_errors.c +++ b/server/fwknopd_errors.c @@ -48,7 +48,7 @@ fwknopd_errstr(const int err_code) return("Not enough data to be a valid SPA message"); case SPA_MSG_NOT_SPA_DATA: - return("Data is not a SPA message"); + return("Data is not an SPA message"); case SPA_MSG_HTTP_NOT_ENABLED: return("SPA via HTTP request, but ENABLE_SPA_OVER_HTTP is not set"); @@ -57,7 +57,7 @@ fwknopd_errstr(const int err_code) return("Error creating FKO context for incoming data."); case SPA_MSG_DIGEST_ERROR: - return("Unable to retrieve digest in from the SPA data."); + return("Unable to retrieve digest from the SPA data."); case SPA_MSG_DIGEST_CACHE_ERROR: return("Error trying to access the digest.cache file");