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-03-16 23:03:10 +0100
commit690866c78a550763c7e410ee80fdae79820ff074 (patch)
treee5bdc19fb3c3d7ba2caff2ba30314cb0c3f0a930
parentFix autotools cross-compiling support (diff)
downloadopenvpn-690866c78a550763c7e410ee80fdae79820ff074.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 e42ccb9..62bf881 100644
--- a/socket.c
+++ b/socket.c
@@ -1862,7 +1862,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;