From 070895c7e107121ee6e73358dfeb0f803e2a5b97 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Tue, 19 Aug 1997 20:09:31 +0200
Subject: [PATCH] Fixed typo in error-message.

Rev: src/fd_control.c:1.8
---
 src/fd_control.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/fd_control.c b/src/fd_control.c
index c5faa6f1a2..b139da5884 100644
--- a/src/fd_control.c
+++ b/src/fd_control.c
@@ -47,7 +47,7 @@ void set_nonblocking(int fd,int which)
 #ifdef USE_FCNTL_FNDELAY
   fcntl(fd, F_SETFL, which?FNDELAY:0);
 #else
-#error Don not know how to set your filedescriptors nonblocking.
+#error Do not know how to set your filedescriptors nonblocking.
 #endif
 #endif
 #endif
@@ -77,7 +77,7 @@ int query_nonblocking(int fd)
 #ifdef USE_FCNTL_FNDELAY
   return fcntl(fd, F_GETFL, 0) & FNDELAY;
 #else
-#error Don not know how to set your filedescriptors nonblocking.
+#error Do not know how to set your filedescriptors nonblocking.
 #endif
 #endif
 #endif
-- 
GitLab