From 151652cc809a57f3ef57654ad3cba0c1f006b109 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Tue, 18 Mar 2014 18:24:40 +0100 Subject: [PATCH] libgtpnl: tools: fix compilation of gtp-link-add A typo slipped through into that file and it stopped compiling. --- libgtnl/tools/gtp-link-add.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgtnl/tools/gtp-link-add.c b/libgtnl/tools/gtp-link-add.c index 0038b9e..833a3b2 100644 --- a/libgtnl/tools/gtp-link-add.c +++ b/libgtnl/tools/gtp-link-add.c @@ -36,7 +36,7 @@ int main(int argc, char *argv[]) ifm->ifi_flags |= IFF_UP; fprintf(stderr, "WARNING: attaching dummy socket descriptors. Use " - "this command for testing purposes only.\n"): + "this command for testing purposes only.\n"); int fd1 = socket(AF_INET, SOCK_DGRAM, 0); int fd2 = socket(AF_INET, SOCK_DGRAM, 0);