summaryrefslogtreecommitdiff
path: root/src/core/network.c
diff options
context:
space:
mode:
authorAlexander Færøy <ahf@0x90.dk>2014-12-06 16:09:11 +0100
committerAlexander Færøy <ahf@0x90.dk>2014-12-06 16:09:11 +0100
commitbbd733392446951f41d04c88cbab9a46ccec31d5 (patch)
tree38037712923aa6dddd883e7f855c470f50589768 /src/core/network.c
parentc01e026c73bb0a030e2d104e73db70c1b2795512 (diff)
parentf285332c5bb98c22952779f6d13664d3b2e3b847 (diff)
downloadirssi-bbd733392446951f41d04c88cbab9a46ccec31d5.zip
Merge pull request #171 from vlajos/typofixes-vlajos-20141108
typo fixes - https://github.com/vlajos/misspell_fixer
Diffstat (limited to 'src/core/network.c')
-rw-r--r--src/core/network.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/network.c b/src/core/network.c
index 3659ab36..bfaa47fb 100644
--- a/src/core/network.c
+++ b/src/core/network.c
@@ -624,7 +624,7 @@ const char *net_gethosterror(int error)
int net_hosterror_notfound(int error)
{
#ifdef HAVE_IPV6
-#ifdef EAI_NODATA /* NODATA is depricated */
+#ifdef EAI_NODATA /* NODATA is deprecated */
return error != 1 && (error == EAI_NONAME || error == EAI_NODATA);
#else
return error != 1 && (error == EAI_NONAME);