From 2e931a4fd9c938c1510b9e60f9f385e80759364f Mon Sep 17 00:00:00 2001 From: crs Date: Mon, 10 Jun 2002 09:49:03 +0000 Subject: [PATCH] changed "permitted" to "supported" in error messages. --- client/client.cpp | 4 ++-- server/server.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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