summaryrefslogtreecommitdiff
path: root/netsniff-ng.c
diff options
context:
space:
mode:
authorDaniel Borkmann <dborkman@redhat.com>2013-07-09 11:15:14 +0200
committerDaniel Borkmann <dborkman@redhat.com>2013-07-09 11:15:14 +0200
commitc07bdeb7419baf7f66e8de386744be9ec4891bb3 (patch)
tree881904b2400c801f9803f388861b93264a6ee992 /netsniff-ng.c
parent65c34d8fec7707e93cecd0378d06fa9b184565e8 (diff)
all: show git id in --version information
In order to be able to better track regressions or to give support, let us track the Git id as well in version information. This makes the ``--version'' switch actually useful. Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Diffstat (limited to 'netsniff-ng.c')
-rw-r--r--netsniff-ng.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/netsniff-ng.c b/netsniff-ng.c
index 8c89f76..09dbf41 100644
--- a/netsniff-ng.c
+++ b/netsniff-ng.c
@@ -37,6 +37,7 @@
#include "irq.h"
#include "str.h"
#include "sig.h"
+#include "config.h"
#include "sock.h"
#include "geoip.h"
#include "lockme.h"
@@ -1111,8 +1112,9 @@ static void __noreturn help(void)
static void __noreturn version(void)
{
- printf("\nnetsniff-ng %s, the packet sniffing beast\n", VERSION_LONG);
- puts("http://www.netsniff-ng.org\n\n"
+ printf("\nnetsniff-ng %s, Git id: %s\n", VERSION_LONG, GITVERSION);
+ puts("the packet sniffing beast\n"
+ "http://www.netsniff-ng.org\n\n"
"Please report bugs to <bugs@netsniff-ng.org>\n"
"Copyright (C) 2009-2013 Daniel Borkmann <dborkma@tik.ee.ethz.ch>\n"
"Copyright (C) 2009-2012 Emmanuel Roullit <emmanuel.roullit@gmail.com>\n"