summaryrefslogtreecommitdiff
path: root/netlib.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2012-09-07 06:00:25 -0400
committerEric S. Raymond <esr@thyrsus.com>2012-09-07 06:00:25 -0400
commitc6e26279e448cb50d26aa308a1473a1d192b192a (patch)
tree9bb78126da29366823ea6949c2c9ec0dc69d58aa /netlib.c
parent200eb5a37da191963478a581c730df2676150320 (diff)
downloadgpsd-c6e26279e448cb50d26aa308a1473a1d192b192a.tar.gz
Un-break the regression tests while we figure out how to reapply.
Diffstat (limited to 'netlib.c')
-rw-r--r--netlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib.c b/netlib.c
index 5673686e..3c3aa66d 100644
--- a/netlib.c
+++ b/netlib.c
@@ -143,7 +143,7 @@ const char /*@observer@*/ *netlib_errstr(const int err)
case NL_NOCONNECT:
return "can't connect to host/port pair";
default:
- return strerror(errno);
+ return "unknown error";
}
}