GUACAMOLE-1912: Fix the spell errors in the identifiers of some constants with a wrong typo.

This commit is contained in:
Jimmy 2024-01-29 00:14:27 -08:00
parent 9164a79509
commit 6ecc586954
2 changed files with 4 additions and 4 deletions

View File

@ -49,7 +49,7 @@ const char* __GUAC_STATUS_PERMISSION_DENIED_STR = "Permission denied";
const char* __GUAC_STATUS_BUSY_STR = "Resource busy";
const char* __GUAC_STATUS_NOT_AVAILABLE_STR = "Resource not available";
const char* __GUAC_STATUS_NOT_SUPPORTED_STR = "Not supported";
const char* __GUAC_STATUS_NOT_INPLEMENTED_STR = "Not implemented";
const char* __GUAC_STATUS_NOT_IMPLEMENTED_STR = "Not implemented";
const char* __GUAC_STATUS_TRY_AGAIN_STR = "Temporary failure";
const char* __GUAC_STATUS_PROTOCOL_ERROR_STR = "Protocol violation";
const char* __GUAC_STATUS_NOT_FOUND_STR = "Not found";
@ -124,8 +124,8 @@ const char* guac_status_string(guac_status status) {
return __GUAC_STATUS_NOT_SUPPORTED_STR;
/* Not implemented */
case GUAC_STATUS_NOT_INPLEMENTED:
return __GUAC_STATUS_NOT_INPLEMENTED_STR;
case GUAC_STATUS_NOT_IMPLEMENTED:
return __GUAC_STATUS_NOT_IMPLEMENTED_STR;
/* Temporary failure */
case GUAC_STATUS_TRY_AGAIN:

View File

@ -116,7 +116,7 @@ typedef enum guac_status {
/**
* Support for the requested operation is not yet implemented.
*/
GUAC_STATUS_NOT_INPLEMENTED,
GUAC_STATUS_NOT_IMPLEMENTED = 15,
/**
* The operation is temporarily unable to be performed, but may succeed if