GUACAMOLE-1912: Fix the spell errors in the identifiers of some constants with a wrong typo.
This commit is contained in:
parent
9164a79509
commit
6ecc586954
@ -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:
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user