diff options
author | Profpatsch <mail@profpatsch.de> | 2021-02-08T02·23+0100 |
---|---|---|
committer | Profpatsch <mail@profpatsch.de> | 2021-02-09T01·36+0000 |
commit | 60b79b2d9d07b35496c221ad3651f2d2fee74b21 (patch) | |
tree | 0fa7ece086c01d39f3bc81809836090a1d050297 /users/Profpatsch/read-http.rs | |
parent | 9fe1db6193d512f4a61eff180055f14b7d92579d (diff) |
feat(users/Profpatsch/arglib): use exec_helpers for rust r/2192
Change-Id: I3056385eb11e45ae13456f4c47052651ba5fb62f Reviewed-on: https://cl.tvl.fyi/c/depot/+/2496 Tested-by: BuildkiteCI Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'users/Profpatsch/read-http.rs')
-rw-r--r-- | users/Profpatsch/read-http.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/users/Profpatsch/read-http.rs b/users/Profpatsch/read-http.rs index becd92b816b0..0c168a733831 100644 --- a/users/Profpatsch/read-http.rs +++ b/users/Profpatsch/read-http.rs @@ -21,14 +21,14 @@ enum What { // The keys are text, but can be lists of text iff headers appear multiple times, so beware. fn main() -> std::io::Result<()> { - let what : What = match arglib_netencode::arglib_netencode(None).unwrap() { + let what : What = match arglib_netencode::arglib_netencode("read-http", None) { T::Record(rec) => match rec.get("what") { Some(T::Text(t)) => match t.as_str() { "request" => What::Request, "response" => What::Response, - _ => die_user_error("read-http arglib", "`what` should be either t:request or t:response"), + _ => die_user_error("read-http", "`what` should be either t:request or t:response"), }, - Some(o) => die_user_error("read-http arglib", format!("expected a record of text, got {:#?}", o)), + Some(o) => die_user_error("read-http", format!("expected a record of text, got {:#?}", o)), None => { eprintln!("read-http arglib: no `what` given, defaulting to Response"); What::Response |