]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
src/tlsproxy.c: Display version in help and debug startup message.
authorSimon Ruderich <simon@ruderich.org>
Sun, 11 Mar 2012 21:58:51 +0000 (22:58 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sun, 11 Mar 2012 21:58:51 +0000 (22:58 +0100)
src/tlsproxy.c

index be4c5f30984ec79472bdf9a569afa82ca01c0260..86ee227e142a762a7bc8ca7ed8898829da9b5b32 100644 (file)
@@ -198,6 +198,7 @@ int main(int argc, char **argv) {
     }
 
     if (LOG_DEBUG_LEVEL <= global_log_level) {
+        printf("tlsproxy %s\n", VERSION);
         printf("Listening for connections on port %d.\n", port);
 
         if (NULL != global_proxy_host && NULL != global_proxy_port) {
@@ -340,6 +341,8 @@ static void parse_arguments(int argc, char **argv) {
     }
 }
 static void print_usage(const char *argv) {
+    fprintf(stderr, "tlsproxy %s, a certificate checking TLS proxy\n",
+                    VERSION);
     fprintf(stderr, "Usage: %s [-d level] [-p host:port] [-t count] [-u] port\n",
                     argv);
     fprintf(stderr, "\n");