From 7010addadbfd1c8da59469b6d1db1881e7d3b635 Mon Sep 17 00:00:00 2001 From: Sergey Lyubka <valenok@gmail.com> Date: Sat, 1 Feb 2014 15:17:13 +0000 Subject: [PATCH] NO_AUTH -> MONGOOSE_NO_AUTH --- examples/server.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/server.c b/examples/server.c index affc69df8..b9899bf27 100644 --- a/examples/server.c +++ b/examples/server.c @@ -131,7 +131,7 @@ static void show_usage_and_exit(void) { fprintf(stderr, "Mongoose version %s (c) Sergey Lyubka, built on %s\n", MONGOOSE_VERSION, __DATE__); fprintf(stderr, "Usage:\n"); -#ifndef NO_AUTH +#ifndef MONGOOSE_NO_AUTH fprintf(stderr, " mongoose -A <htpasswd_file> <realm> <user> <passwd>\n"); #endif fprintf(stderr, " mongoose [config_file]\n"); @@ -310,7 +310,7 @@ static void set_absolute_path(char *options[], const char *option_name, } } -#ifndef NO_AUTH +#ifndef MONGOOSE_NO_AUTH int modify_passwords_file(const char *fname, const char *domain, const char *user, const char *pass) { int found; @@ -383,7 +383,7 @@ static void start_mongoose(int argc, char *argv[]) { die("%s", "Failed to start Mongoose."); } -#ifndef NO_AUTH +#ifndef MONGOOSE_NO_AUTH // Edit passwords file if -A option is specified if (argc > 1 && !strcmp(argv[1], "-A")) { if (argc != 6) { -- GitLab