Skip to content

Commit

Permalink
Remove library version information
Browse files Browse the repository at this point in the history
When reporting versions, the library version information is not
required. It is available through running ldd if needed.
Also resolves #32.
  • Loading branch information
Gerrit Renker committed Dec 14, 2016
1 parent a798654 commit 30bfd52
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions conf.c
Expand Up @@ -552,8 +552,7 @@ void getconf(int argc, char *argv[])
}

if (version) {
printf("wavemon %s", PACKAGE_VERSION);
printf(" with ncurses %s and libnl %s.\n", NCURSES_VERSION, LIBNL_VERSION);
printf("wavemon %s\n", PACKAGE_VERSION);
printf("Distributed under the terms of the GPLv3.\n%s", help ? "\n" : "");
}
if (help) {
Expand Down

0 comments on commit 30bfd52

Please sign in to comment.