diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2015-11-05 14:15:17 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2015-11-05 14:15:17 +0100 |
commit | 652bcb10a32bb898c16f4ba16c07ad6a1cdfda74 (patch) | |
tree | 2165a055307ed1425e680526503e1347de7ff087 | |
parent | 19991f90d8398a944721b684b1584c1e339c6fec (diff) |
trafgen: Fix typo in error message
Spell out "resolve" properly.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
-rw-r--r-- | trafgen.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -456,7 +456,7 @@ static int xmit_smoke_setup(struct ctx *ctx) ret = inet_aton(ctx->rhost, &ctx->dest.sin_addr); if (ret < 0) - panic("Cannot resolv address!\n"); + panic("Cannot resolve address!\n"); return icmp_sock; } |