From: Alan T. DeKok Date: Mon, 21 Nov 2011 16:47:27 +0000 (+0100) Subject: Correct typo in error message X-Git-Tag: release_3_0_0_beta0~490 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=329a70a12dd52fb7465995e0e100bb64a58a6215;p=thirdparty%2Ffreeradius-server.git Correct typo in error message ascend secret is "encrypt=3", not "encrypt=2" --- diff --git a/src/lib/dict.c b/src/lib/dict.c index 9bffff32348..71bdfedb703 100644 --- a/src/lib/dict.c +++ b/src/lib/dict.c @@ -1312,7 +1312,7 @@ static int process_attribute(const char* fn, const int line, if ((flags.encrypt == FLAG_ENCRYPT_ASCEND_SECRET) && (type != PW_TYPE_STRING)) { - fr_strerror_printf( "dict_init: %s[%d] Only \"string\" types can have the \"encrypt=2\" flag set.", + fr_strerror_printf( "dict_init: %s[%d] Only \"string\" types can have the \"encrypt=3\" flag set.", fn, line); return -1; }