aboutsummaryrefslogtreecommitdiff
path: root/src/proone_protocol.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/proone_protocol.c')
-rw-r--r--src/proone_protocol.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/proone_protocol.c b/src/proone_protocol.c
index b56769c..3721440 100644
--- a/src/proone_protocol.c
+++ b/src/proone_protocol.c
@@ -25,8 +25,6 @@ const char *proone_arch2str (const proone_arch_t x) {
return "sh4";
case PROONE_ARCH_SPC:
return "spc";
- case PROONE_ARCH_X86_64:
- return "x86_64";
}
return NULL;
@@ -66,9 +64,6 @@ proone_arch_t proone_str2arch (const char *str) {
else if (strcmp(str, "spc") == 0) {
return PROONE_ARCH_SPC;
}
- else if (strcmp(str, "x86_64") == 0) {
- return PROONE_ARCH_X86_64;
- }
return PROONE_ARCH_NONE;
}