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")) {
|
else if (isArg(i, argc, argv, NULL, "--install")) {
|
||||||
#if !defined(CONFIG_PLATFORM_WIN32)
|
#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));
|
pname, argv[i], pname));
|
||||||
bye(2);
|
bye(2);
|
||||||
#endif
|
#endif
|
||||||
|
@ -316,7 +316,7 @@ static void parse(int argc, const char** argv)
|
||||||
|
|
||||||
else if (isArg(i, argc, argv, NULL, "--uninstall")) {
|
else if (isArg(i, argc, argv, NULL, "--uninstall")) {
|
||||||
#if !defined(CONFIG_PLATFORM_WIN32)
|
#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));
|
pname, argv[i], pname));
|
||||||
bye(2);
|
bye(2);
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -365,7 +365,7 @@ static void parse(int argc, const char** argv)
|
||||||
|
|
||||||
else if (isArg(i, argc, argv, NULL, "--install")) {
|
else if (isArg(i, argc, argv, NULL, "--install")) {
|
||||||
#if !defined(CONFIG_PLATFORM_WIN32)
|
#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));
|
pname, argv[i], pname));
|
||||||
bye(2);
|
bye(2);
|
||||||
#endif
|
#endif
|
||||||
|
@ -380,7 +380,7 @@ static void parse(int argc, const char** argv)
|
||||||
|
|
||||||
else if (isArg(i, argc, argv, NULL, "--uninstall")) {
|
else if (isArg(i, argc, argv, NULL, "--uninstall")) {
|
||||||
#if !defined(CONFIG_PLATFORM_WIN32)
|
#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));
|
pname, argv[i], pname));
|
||||||
bye(2);
|
bye(2);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue