From 4fa973e4a48f6f4de4c8937d6c2472564b760c76 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 24 May 2007 21:29:15 +0000 Subject: r23123: Fix two utterly simply typos that broke the whole build farm... Michael (This used to be commit 54193c4638a27983f18478a61beedde889ecc2e2) --- source4/lib/replace/replace.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source4/lib/replace/replace.h b/source4/lib/replace/replace.h index 3a8ce1a6f1..5918f98bc4 100644 --- a/source4/lib/replace/replace.h +++ b/source4/lib/replace/replace.h @@ -338,12 +338,12 @@ int rep_mkstemp(char *temp); char *rep_mkdtemp(char *template); #endif -#ifdef HAVE_INET_PTON +#ifndef HAVE_INET_PTON #define inet_pton rep_inet_pton int rep_inet_pton(int af, const char *src, void *dst); #endif -#ifdef HAVE_INET_NTOP +#ifndef HAVE_INET_NTOP #define inet_ntop rep_inet_ntop const char *rep_inet_ntop(int af, const void *src, char *dst, size_t size); #endif -- cgit