aboutsummaryrefslogtreecommitdiff
path: root/src/parse_host_port.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse_host_port.rs')
-rw-r--r--src/parse_host_port.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/parse_host_port.rs b/src/parse_host_port.rs
index 0f02d48..cd9cb93 100644
--- a/src/parse_host_port.rs
+++ b/src/parse_host_port.rs
@@ -99,7 +99,7 @@ impl State {
},
Self::IpvFutureBody(state) => Self::next_ipv_future_body(state, c),
Self::GarbageCheck(state) => Self::next_garbage_check(state, c),
- Self::Port(state) => Self::next_port(state, c),
+ Self::Port(state) => Ok(Self::next_port(state, c)),
}
}
@@ -206,10 +206,10 @@ impl State {
fn next_port(
state: Shared,
c: char,
- ) -> Result<Self, Error> {
+ ) -> Self {
let mut state = state;
state.port_string.push(c);
- Ok(Self::Port(state))
+ Self::Port(state)
}
}