summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c7ad61c)
raw | patch | inline | side by side (parent: c7ad61c)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Mon, 16 Feb 2009 21:08:45 +0000 (22:08 +0100) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Mon, 16 Feb 2009 21:08:45 +0000 (22:08 +0100) |
EPROTO is an XSR (XSI streams) extension and not supported on some
platforms (OpenBSD, apparently).
platforms (OpenBSD, apparently).
src/libcollectdclient/client.c | patch | blob | history |
index 847eafc948857d8aaeb10b9023a651a2a3c299b2..93eadb752c3c5ec0b81ff2d74e0521b8e17b0ef2 100644 (file)
key = res.lines[i];
value = strchr (key, '=');
if (value == NULL)
- BAIL_OUT (EPROTO);
+ BAIL_OUT (EILSEQ);
*value = 0;
value++;
if (*ident_str == 0)
{
- lcc_set_errno (c, EPROTO);
+ lcc_set_errno (c, EILSEQ);
status = -1;
break;
}