diff --git a/util.c b/util.c index c37f12e..cf4f4be 100644 --- a/util.c +++ b/util.c @@ -108,8 +108,8 @@ char* get_version(int argc, char* argv[]) { optbuf = " "; } - if (asprintf(&retbuf, "%s: %s compiled: %s" FEATURE_FLAGS " options:%s", - argv[0], VERSION, __DATE__ " " __TIME__, optbuf) < 1) { + if (asprintf(&retbuf, "pixelserv-tls %s (compiled: %s" FEATURE_FLAGS ") options:%s", + VERSION, __DATE__ " " __TIME__, optbuf) < 1) { retbuf = " "; } diff --git a/util.h b/util.h index 88dfd9b..8bcec54 100644 --- a/util.h +++ b/util.h @@ -20,7 +20,7 @@ #include // preprocessor defines -#define VERSION "v2.1.0-test.3" +#define VERSION "2.1.0-test.4" #define BACKLOG SOMAXCONN // how many pending connections queue will hold #define DEFAULT_IP "*" // default IP address ALL - use this in messages only