diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2014-12-12 16:26:32 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2014-12-12 16:26:32 +0100 |
commit | b8a9e53262ab24231542e9ce93daadaf3809dac2 (patch) | |
tree | 4cda5115b819f51eae9eb37add05ab6f740fc729 /curvetun.c | |
parent | 49cf9fd16e4d47422b9aec2ab360bfd80e9f67cf (diff) |
all: Reduce amount of empty liens in usage and version output a bit
No need for some of the empty lines, remove them to make the output a
bit denser.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'curvetun.c')
-rw-r--r-- | curvetun.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -87,7 +87,7 @@ static void signal_handler(int number) static void __noreturn help(void) { - printf("\ncurvetun %s, lightweight curve25519-based IP tunnel\n", VERSION_STRING); + printf("curvetun %s, lightweight curve25519-based IP tunnel\n", VERSION_STRING); puts("http://www.netsniff-ng.org\n\n" "Usage: curvetun [options]\n" "Options, general:\n" @@ -129,7 +129,7 @@ static void __noreturn help(void) static void __noreturn version(void) { - printf("\ncurvetun %s, Git id: %s\n", VERSION_LONG, GITVERSION); + printf("curvetun %s, Git id: %s\n", VERSION_LONG, GITVERSION); puts("lightweight curve25519-based IP tunnel\n" "Note: Einstein-Rosen bridge not yet supported\n" "http://www.netsniff-ng.org\n\n" |