From 8c654609042f506897b72f4b034735c8b53cf2a6 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 13 Nov 2000 21:31:17 +0000 Subject: 2000-11-13 Roland McGrath * hurd/get-host.c (_hurd_get_host_config): Fix last change. --- hurd/get-host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hurd/get-host.c') diff --git a/hurd/get-host.c b/hurd/get-host.c index 93890c7..2794eec 100644 --- a/hurd/get-host.c +++ b/hurd/get-host.c @@ -72,7 +72,7 @@ _hurd_get_host_config (const char *item, char *buf, size_t buflen) } /* Remove newlines in case someone wrote the file by hand. */ - while (buf[nread - 1] == '\n' && nread > 0) + while (nread > 0 && buf[nread - 1] == '\n') buf[--nread] = '\0'; /* Null-terminate the result if there is enough space. */ -- cgit v1.1