diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2009-05-25 09:53:32 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2009-05-25 09:53:32 +0000 |
commit | 8eb98d5966ed47b0b7097089adcb0639a7bccfe4 (patch) | |
tree | aee5cfa9236a6af2569347d139b7ea4548fc9641 | |
parent | 7c0d672c69ef23cdbed01454d6a0ab19ef45488a (diff) | |
download | fetchmail-8eb98d5966ed47b0b7097089adcb0639a7bccfe4.tar.gz fetchmail-8eb98d5966ed47b0b7097089adcb0639a7bccfe4.tar.bz2 fetchmail-8eb98d5966ed47b0b7097089adcb0639a7bccfe4.zip |
Fix compiler warning if compiled without RES_SEARCH.
svn path=/branches/BRANCH_6-3/; revision=5324
-rw-r--r-- | mxget.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,8 +9,8 @@ #include "config.h" #include "fetchmail.h" #include <stdio.h> -#ifdef HAVE_RES_SEARCH #include <string.h> +#ifdef HAVE_RES_SEARCH #ifdef HAVE_NET_SOCKET_H #include <net/socket.h> #endif |