Fix enum value for UNAVAILABLE

This commit is contained in:
pscott
2021-04-24 12:02:25 +02:00
parent 0af10691eb
commit c006233a78

View File

@@ -26,7 +26,7 @@ typedef enum {
ETH_PLUGIN_RESULT_OK = 0x01,
ETH_PLUGIN_RESULT_OK_ALIAS = 0x02,
ETH_PLUGIN_RESULT_FALLBACK = 0x03,
ETH_PLUGIN_RESULT_UNAVAILABLE = 0x03
ETH_PLUGIN_RESULT_UNAVAILABLE = 0x04
} eth_plugin_result_t;