parse_bytes is deprecated

TBH I'm not sure if this is the most efficient method, but it matches the conversions at 138b76b83a (diff-fcdbb6413438d3b568fe96fd242d8fc9R617)
This commit is contained in:
Michael Hart
2014-11-05 11:27:16 -05:00
parent d409236e42
commit 8a91003e88

View File

@@ -2,7 +2,7 @@
use std::cmp::min; use std::cmp::min;
use std::fmt; use std::fmt;
use std::io::{mod, Reader, IoResult}; use std::io::{mod, Reader, IoResult};
use std::u16; use std::str;
use url::Url; use url::Url;
@@ -545,7 +545,7 @@ pub fn read_status<R: Reader>(stream: &mut R) -> HttpResult<status::StatusCode>
try_io!(stream.read_byte()), try_io!(stream.read_byte()),
]; ];
let code = match u16::parse_bytes(code.as_slice(), 10) { let code = match str::from_utf8(code.as_slice()).and_then(from_str::<u16>) {
Some(num) => match FromPrimitive::from_u16(num) { Some(num) => match FromPrimitive::from_u16(num) {
Some(code) => code, Some(code) => code,
None => return Err(HttpStatusError) None => return Err(HttpStatusError)