Commit cbd18b28 authored by Kenton Varda's avatar Kenton Varda

Merge pull request #223 from mrdomino/no-eproto

Workaround nonexistent EPROTO on OpenBSD
parents 5413038b 156efd49
......@@ -806,7 +806,10 @@ public:
case EINTR:
case ENETDOWN:
#ifdef EPROTO
// EPROTO is not defined on OpenBSD.
case EPROTO:
#endif
case EHOSTDOWN:
case EHOSTUNREACH:
case ENETUNREACH:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment