changed "permitted" to "supported" in error messages.
This commit is contained in:
parent
0a2f8547fc
commit
2e931a4fd9
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue