From a19d6d9d7cffe4496956877618e12d2320aa6215 Mon Sep 17 00:00:00 2001 From: Marcus Millin Date: Tue, 18 Sep 2018 19:48:53 -0500 Subject: [PATCH] hostid: remove old enum Remove old arg parsing enum --- src/hostid/hostid.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/hostid/hostid.rs b/src/hostid/hostid.rs index 1529e99b5..955868aea 100644 --- a/src/hostid/hostid.rs +++ b/src/hostid/hostid.rs @@ -20,12 +20,6 @@ static SYNTAX: &str = "[options]"; static SUMMARY: &str = ""; static LONG_HELP: &str = ""; -pub enum Mode { - HostId, - Help, - Version, -} - // currently rust libc interface doesn't include gethostid extern "C" { pub fn gethostid() -> c_long;