$OpenBSD$

https://github.com/bleakgrey/tootle/pull/322

Index: src/Services/Network/Network.vala
--- src/Services/Network/Network.vala.orig
+++ src/Services/Network/Network.vala
@@ -56,18 +56,13 @@ public class Tootle.Network : GLib.Object {
 				else if (status == Soup.Status.CANCELLED)
 					debug ("Message is cancelled. Ignoring callback invocation.");
 				else
-					ecb ((int32) status, describe_error ((int32) status));
+					ecb ((int32) status, msg.reason_phrase);
 			});
 		}
 		catch (Error e) {
 			warning (@"Exception in network queue: $(e.message)");
 			ecb (0, e.message);
 		}
-	}
-
-	public string describe_error (uint code) {
-		var reason = Soup.Status.get_phrase (code);
-		return @"$code: $reason";
 	}
 
 	public void on_error (int32 code, string message) {
