diff --git a/client/client.cpp b/client/client.cpp index 6f9ed543..c2797ae1 100644 --- a/client/client.cpp +++ b/client/client.cpp @@ -301,7 +301,7 @@ static void parse(int argc, const char** argv) else if (isArg(i, argc, argv, NULL, "--install")) { #if !defined(CONFIG_PLATFORM_WIN32) - log((CLOG_PRINT "%s: `%s' not permitted on this platform" BYE, + log((CLOG_PRINT "%s: `%s' not supported on this platform" BYE, pname, argv[i], pname)); bye(2); #endif @@ -316,7 +316,7 @@ static void parse(int argc, const char** argv) else if (isArg(i, argc, argv, NULL, "--uninstall")) { #if !defined(CONFIG_PLATFORM_WIN32) - log((CLOG_PRINT "%s: `%s' not permitted on this platform" BYE, + log((CLOG_PRINT "%s: `%s' not supported on this platform" BYE, pname, argv[i], pname)); bye(2); #endif diff --git a/server/server.cpp b/server/server.cpp index 38030244..0b671e0a 100644 --- a/server/server.cpp +++ b/server/server.cpp @@ -365,7 +365,7 @@ static void parse(int argc, const char** argv) else if (isArg(i, argc, argv, NULL, "--install")) { #if !defined(CONFIG_PLATFORM_WIN32) - log((CLOG_PRINT "%s: `%s' not permitted on this platform" BYE, + log((CLOG_PRINT "%s: `%s' not supported on this platform" BYE, pname, argv[i], pname)); bye(2); #endif @@ -380,7 +380,7 @@ static void parse(int argc, const char** argv) else if (isArg(i, argc, argv, NULL, "--uninstall")) { #if !defined(CONFIG_PLATFORM_WIN32) - log((CLOG_PRINT "%s: `%s' not permitted on this platform" BYE, + log((CLOG_PRINT "%s: `%s' not supported on this platform" BYE, pname, argv[i], pname)); bye(2); #endif