summaryrefslogtreecommitdiff
path: root/lib/replace/replace.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-03-29 20:53:16 +1100
committerAndrew Tridgell <tridge@samba.org>2010-03-29 21:34:29 +1100
commit686221eae28ff58fb048fdc7132e1413dedb6eb9 (patch)
treef3eb5ae4c35dd18d1128fb8d7f87577562d7213c /lib/replace/replace.h
parent7ed349caceed2524d897d957cee98ad1cdc4704c (diff)
downloadsamba-686221eae28ff58fb048fdc7132e1413dedb6eb9.tar.gz
samba-686221eae28ff58fb048fdc7132e1413dedb6eb9.tar.bz2
samba-686221eae28ff58fb048fdc7132e1413dedb6eb9.zip
s4-waf: use the libreplace strerror_r if needed
Diffstat (limited to 'lib/replace/replace.h')
-rw-r--r--lib/replace/replace.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/replace/replace.h b/lib/replace/replace.h
index 9eb6604c96..7adc224bf2 100644
--- a/lib/replace/replace.h
+++ b/lib/replace/replace.h
@@ -512,9 +512,9 @@ ssize_t rep_pwrite(int __fd, const void *__buf, size_t __nbytes, off_t __offset)
char *rep_get_current_dir_name(void);
#endif
-#ifndef HAVE_STRERROR_R
+#if !defined(HAVE_STRERROR_R) || !defined(STRERROR_R_PROTO_COMPATIBLE)
#define strerror_r rep_strerror_r
-char *rep_strerror_r(int errnum, char *buf, size_t buflen);
+int rep_strerror_r(int errnum, char *buf, size_t buflen);
#endif
#ifdef HAVE_LIMITS_H