From c8f269066c9dddff5a3765c57f11bcc69c3ead89 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Tue, 14 Dec 2010 21:25:44 -0600 Subject: [PATCH] Correct error message involving no fingerprint credentials or password credentials being available. --- src/newconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/newconf.c b/src/newconf.c index ef851a9e2..7405cfd80 100644 --- a/src/newconf.c +++ b/src/newconf.c @@ -1244,7 +1244,7 @@ conf_end_connect(struct TopConf *tc) if((EmptyString(yy_server->passwd) || EmptyString(yy_server->spasswd)) && EmptyString(yy_server->certfp)) { - conf_report_error("Ignoring connect block for %s -- no certfp or password credentials provided.", + conf_report_error("Ignoring connect block for %s -- no fingerprint or password credentials provided.", yy_server->name); return 0; }