From ef1d85ca55951e29505ad20e57fc26bb01a5c22a Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Mon, 19 Dec 2016 23:41:40 +0100 Subject: [PATCH] Fix EDESTADDRREQ typo. --- libc/string/strerror.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/string/strerror.c b/libc/string/strerror.c index 0ad48b9a..0b288e0d 100644 --- a/libc/string/strerror.c +++ b/libc/string/strerror.c @@ -84,7 +84,7 @@ const char* sortix_strerror(int errnum) case EADDRNOTAVAIL: return "Address not available"; case EISCONN: return "Socket is connected"; case EFAULT: return "Bad address"; - case EDESTADDRREQ: return "Destinatiohn address required"; + case EDESTADDRREQ: return "Destination address required"; case EHOSTUNREACH: return "Host is unreachable"; case EMSGSIZE: return "Message too long"; case ENETDOWN: return "Network is down";