Date: Tue, 7 Jan 2020 16:52:06 +0000 (UTC) From: "Bjoern A. Zeeb" <bz@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org Subject: svn commit: r356450 - stable/12/lib/libipsec Message-ID: <202001071652.007Gq6EB086205@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bz Date: Tue Jan 7 16:52:05 2020 New Revision: 356450 URL: https://svnweb.freebsd.org/changeset/base/356450 Log: MFC r354572: libipsec: correct a typo Correct a typo in the ipsec_errlist and replicated in a comment. No functional changes. Modified: stable/12/lib/libipsec/ipsec_strerror.c stable/12/lib/libipsec/ipsec_strerror.h Directory Properties: stable/12/ (props changed) Modified: stable/12/lib/libipsec/ipsec_strerror.c ============================================================================== --- stable/12/lib/libipsec/ipsec_strerror.c Tue Jan 7 16:49:56 2020 (r356449) +++ stable/12/lib/libipsec/ipsec_strerror.c Tue Jan 7 16:52:05 2020 (r356450) @@ -62,7 +62,7 @@ static const char *ipsec_errlist[] = { "Invalid key length", /*EIPSEC_INVAL_KEYLEN*/ "Invalid address family", /*EIPSEC_INVAL_FAMILY*/ "Invalid prefix length", /*EIPSEC_INVAL_PREFIXLEN*/ -"Invalid direciton", /*EIPSEC_INVAL_DIR*/ +"Invalid direction", /*EIPSEC_INVAL_DIR*/ "SPI range violation", /*EIPSEC_INVAL_SPI*/ "No protocol specified", /*EIPSEC_NO_PROTO*/ "No algorithm specified", /*EIPSEC_NO_ALGS*/ Modified: stable/12/lib/libipsec/ipsec_strerror.h ============================================================================== --- stable/12/lib/libipsec/ipsec_strerror.h Tue Jan 7 16:49:56 2020 (r356449) +++ stable/12/lib/libipsec/ipsec_strerror.h Tue Jan 7 16:52:05 2020 (r356450) @@ -52,7 +52,7 @@ extern void __ipsec_set_strerror(const char *); #define EIPSEC_INVAL_KEYLEN 14 /*invalid key length*/ #define EIPSEC_INVAL_FAMILY 15 /*invalid address family*/ #define EIPSEC_INVAL_PREFIXLEN 16 /*SPI range violation*/ -#define EIPSEC_INVAL_DIR 17 /*Invalid direciton*/ +#define EIPSEC_INVAL_DIR 17 /*Invalid direction*/ #define EIPSEC_INVAL_SPI 18 /*invalid prefixlen*/ #define EIPSEC_NO_PROTO 19 /*no protocol specified*/ #define EIPSEC_NO_ALGS 20 /*No algorithm specified*/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001071652.007Gq6EB086205>