summaryrefslogtreecommitdiff
path: root/src/plainPacket.cpp
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2009-01-19 23:21:30 +0000
committerChristian Pointner <equinox@anytun.org>2009-01-19 23:21:30 +0000
commitcf44e028d076399177619d8bc523fa13521e0b5e (patch)
treefdf5577e32b1ad656f32101e530fe255b3089ee6 /src/plainPacket.cpp
parentfixed overlapped handling of read and write at windows tundevice (diff)
fixed silly bug at new tundevice
Diffstat (limited to 'src/plainPacket.cpp')
-rw-r--r--src/plainPacket.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plainPacket.cpp b/src/plainPacket.cpp
index 6d06b3f..6863c48 100644
--- a/src/plainPacket.cpp
+++ b/src/plainPacket.cpp
@@ -103,7 +103,7 @@ void PlainPacket::reinit()
if(length_ < (sizeof(payload_type_t))) {
payload_type_ = NULL;
- throw std::runtime_error("packet can't be initialized, buffer is too small");
+ throw std::runtime_error("plain packet can't be initialized, buffer is too small");
}
}