aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2017-12-01 15:39:28 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2017-12-01 15:39:28 +0100
commitd9fff0c543e48ac49f97fd2b2fffdcb05115dc1e (patch)
treed3206dc6791f15f682d4e6a779e267500fb8c34f /lib
parent1d85bea152506b4c812eafaccb0d390678f17ca9 (diff)
tun_setaddr6: Fix log typo
Diffstat (limited to 'lib')
-rw-r--r--lib/tun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tun.c b/lib/tun.c
index fcd04f3..5960197 100644
--- a/lib/tun.c
+++ b/lib/tun.c
@@ -401,7 +401,7 @@ static int tun_setaddr6(struct tun_t *this, struct in6_addr *addr, struct in6_ad
if (errno != EEXIST) {
SYS_ERR(DTUN, LOGL_ERROR, 0, "ioctl(SIOCSIFADDR) failed");
} else {
- SYS_ERR(DTUN, LOGL_NOTICE, 0, "ioctl(SIOCSIFADDR): Address alreadsy exists");
+ SYS_ERR(DTUN, LOGL_NOTICE, 0, "ioctl(SIOCSIFADDR): Address already exists");
}
close(fd);
return -1;