about summary refs log tree commit diff
path: root/users/Profpatsch/read-http.rs
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2021-02-08T02·23+0100
committerProfpatsch <mail@profpatsch.de>2021-02-09T01·36+0000
commit60b79b2d9d07b35496c221ad3651f2d2fee74b21 (patch)
tree0fa7ece086c01d39f3bc81809836090a1d050297 /users/Profpatsch/read-http.rs
parent9fe1db6193d512f4a61eff180055f14b7d92579d (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.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/users/Profpatsch/read-http.rs b/users/Profpatsch/read-http.rs
index becd92b816..0c168a7338 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