From 4993befdb482a76db4a82ee1519ae1b64d9d4cab Mon Sep 17 00:00:00 2001 From: d33tah Date: Wed, 21 Aug 2013 20:06:38 +0000 Subject: [PATCH] Fix a typo in nsock documentation. --- nsock/include/nsock.h | 2 +- nsock/src/nsock_iod.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nsock/include/nsock.h b/nsock/include/nsock.h index 9d9a75e18..e34f090e2 100644 --- a/nsock/include/nsock.h +++ b/nsock/include/nsock.h @@ -380,7 +380,7 @@ nsock_iod nsi_new2(nsock_pool nsockp, int sd, void *userdata); * pending on this nsock_iod. This can be NSOCK_PENDING_NOTIFY (send a KILL * notification to each event), NSOCK_PENDING_SILENT (do not send notification * to the killed events), or NSOCK_PENDING_ERROR (print an error message and - * quiit the program) */ + * quit the program) */ #define NSOCK_PENDING_NOTIFY 1 #define NSOCK_PENDING_SILENT 2 #define NSOCK_PENDING_ERROR 4 diff --git a/nsock/src/nsock_iod.c b/nsock/src/nsock_iod.c index 416c8035b..935eea0b5 100644 --- a/nsock/src/nsock_iod.c +++ b/nsock/src/nsock_iod.c @@ -169,7 +169,7 @@ int socket_count_zero(msiod *iod, mspool *ms); * pending on this nsock_iod. This can be NSOCK_PENDING_NOTIFY (send a KILL * notification to each event), NSOCK_PENDING_SILENT (do not send notification * to the killed events), or NSOCK_PENDING_ERROR (print an error message and - * quiit the program) */ + * quit the program) */ void nsi_delete(nsock_iod nsockiod, int pending_response) { msiod *nsi = (msiod *)nsockiod; gh_lnode_t *evlist_ar[3];