Skip to content
Snippets Groups Projects
Commit 3b0dd501 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Resolve gcc warning: enumeration value ‘NET_NONE’ not handled in switch

parent a0444fff
Branches
Tags
No related merge requests found
...@@ -1445,6 +1445,8 @@ extern "C" BOOL is_supported_netmail_addr(scfg_t* cfg, const char* addr) ...@@ -1445,6 +1445,8 @@ extern "C" BOOL is_supported_netmail_addr(scfg_t* cfg, const char* addr)
qwk_route(cfg, p + 1, fulladdr, sizeof(fulladdr)-1); qwk_route(cfg, p + 1, fulladdr, sizeof(fulladdr)-1);
return fulladdr[0] != 0; return fulladdr[0] != 0;
} }
default:
return FALSE;
} }
return FALSE; return FALSE;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment