From aef7bcf2882263d4b56dd3f6ed4707193719f3d8 Mon Sep 17 00:00:00 2001 From: Elliptica Date: Mon, 17 Apr 2017 18:47:48 +0300 Subject: [PATCH] Fix typo --- src/usocket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/usocket.c b/src/usocket.c index 8adc573..6e7f8f6 100644 --- a/src/usocket.c +++ b/src/usocket.c @@ -76,7 +76,7 @@ int socket_waitfd(p_socket ps, int sw, p_timeout tm) { * Initializes module \*-------------------------------------------------------------------------*/ int socket_open(void) { - /* instals a handler to ignore sigpipe or it will crash us */ + /* installs a handler to ignore sigpipe or it will crash us */ signal(SIGPIPE, SIG_IGN); return 1; }