X-Git-Url: http://www.project-moonshot.org/gitweb/?p=trust_router.git;a=blobdiff_plain;f=mon%2Fmon_common.c;fp=mon%2Fmon_common.c;h=b0ff1d8b6bacc9317b48fdd7dc20027523973afd;hp=9a71af4b811c0f365ca8e512332e57dc7038a246;hb=f6165c5ed715591e476d69041c44e60833785091;hpb=4cdebea78823e763a3ea602b4f79d56a799bc536 diff --git a/mon/mon_common.c b/mon/mon_common.c index 9a71af4..b0ff1d8 100644 --- a/mon/mon_common.c +++ b/mon/mon_common.c @@ -50,9 +50,6 @@ const char *mon_cmd_to_string(MON_CMD cmd) case MON_CMD_UNKNOWN: return NULL; - case MON_CMD_RECONFIGURE: - return "reconfigure"; - case MON_CMD_SHOW: return "show"; } @@ -68,7 +65,6 @@ const char *mon_cmd_to_string(MON_CMD cmd) MON_CMD mon_cmd_from_string(const char *s) { - return_if_matches(s, MON_CMD_RECONFIGURE); return_if_matches(s, MON_CMD_SHOW); return MON_CMD_UNKNOWN; }