1
0
mirror of https://github.com/lammertb/libhttp.git synced 2025-09-03 01:21:16 +03:00

Updated version to 1.2

This commit is contained in:
Thomas Davis
2013-08-24 02:56:07 -04:00
parent 7bc5e59d0c
commit e7510a572a
2 changed files with 3 additions and 3 deletions

View File

@@ -106,7 +106,7 @@ static void show_usage_and_exit(void) {
const char **names;
int i;
fprintf(stderr, "Civetweb version %s (c) Sergey Lyubka, built on %s\n",
fprintf(stderr, "Civetweb v%s, built on %s\n",
mg_version(), __DATE__);
fprintf(stderr, "Usage:\n");
fprintf(stderr, " civetweb -A <htpasswd_file> <realm> <user> <passwd>\n");
@@ -273,7 +273,7 @@ static void process_command_line_arguments(char *argv[], char **options) {
}
static void init_server_name(void) {
snprintf(server_name, sizeof(server_name), "Civetweb web server v.%s",
snprintf(server_name, sizeof(server_name), "Civetweb v%s",
mg_version());
}