aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto Gonzalez Iniesta <agi@inittab.org>2010-03-16 23:03:10 +0100
committerDavid Sommerseth <dazo@users.sourceforge.net>2010-04-27 23:07:37 +0200
commit8a7745f35fb90c482972d984c62b75e75b947c28 (patch)
treea8a2d6a9c8790b3044c701e0f26c90c47f254783
parentFix autotools cross-compiling support (diff)
downloadopenvpn-8a7745f35fb90c482972d984c62b75e75b947c28.tar.xz
Debian patch: Fix spelling in log message
Signed-off-by: David Sommerseth <dazo@users.sourceforge.net> Acked-by: David Sommerseth <dazo@users.sourceforge.net>
-rw-r--r--socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/socket.c b/socket.c
index 594b50a..38d1256 100644
--- a/socket.c
+++ b/socket.c
@@ -1863,7 +1863,7 @@ stream_buf_added (struct stream_buf *sb,
if (sb->len < 1 || sb->len > sb->maxlen)
{
- msg (M_WARN, "WARNING: Bad encapsulated packet length from peer (%d), which must be > 0 and <= %d -- please ensure that --tun-mtu or --link-mtu is equal on both peers -- this condition could also indicate a possible active attack on the TCP link -- [Attemping restart...]", sb->len, sb->maxlen);
+ msg (M_WARN, "WARNING: Bad encapsulated packet length from peer (%d), which must be > 0 and <= %d -- please ensure that --tun-mtu or --link-mtu is equal on both peers -- this condition could also indicate a possible active attack on the TCP link -- [Attempting restart...]", sb->len, sb->maxlen);
stream_buf_reset (sb);
sb->error = true;
return false;