diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index dfe8d2f0bcb..26c59b8ff86 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -54,8 +54,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 54 | #include <client.h> | 54 | #include <client.h> |
| 55 | #endif | 55 | #endif |
| 56 | 56 | ||
| 57 | /* DGUX inet_addr returns a 'struct in_addr'. */ | 57 | /* On some systems, e.g. DGUX, inet_addr returns a 'struct in_addr'. */ |
| 58 | #ifdef DGUX | 58 | #ifdef HAVE_BROKEN_INET_ADDR |
| 59 | #define IN_ADDR struct in_addr | 59 | #define IN_ADDR struct in_addr |
| 60 | #define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1) | 60 | #define NUMERIC_ADDR_ERROR (numeric_addr.s_addr == -1) |
| 61 | #else | 61 | #else |