summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Habets <thomas@habets.se>2011-11-20 12:26:28 +0000
committerSam Roberts <vieuxtech@gmail.com>2012-03-01 09:01:25 -0800
commitb973ab894c2f2281802c7fd9f1dd055877934c5b (patch)
tree2c533c1e2eb694d09c9768b4a2faac132e2f6223
parentf371f9f88b339090ce286e0d79bb5fac2e54219b (diff)
downloadlibnet-b973ab894c2f2281802c7fd9f1dd055877934c5b.tar.gz
Fixed typo in error message.
-rw-r--r--libnet/src/libnet_checksum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libnet/src/libnet_checksum.c b/libnet/src/libnet_checksum.c
index 6970d0d..cd8099f 100644
--- a/libnet/src/libnet_checksum.c
+++ b/libnet/src/libnet_checksum.c
@@ -519,7 +519,7 @@ libnet_inet_checksum(libnet_t *l, uint8_t *iphdr, int protocol, int h_len, const
default:
{
snprintf(l->err_buf, LIBNET_ERRBUF_SIZE,
- "%s(): unsuported protocol %d\n", __func__, protocol);
+ "%s(): unsupported protocol %d\n", __func__, protocol);
return (-1);
}
}