]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
silence compiler warning
authorMark Andrews <marka@isc.org>
Fri, 12 Aug 2005 01:32:01 +0000 (01:32 +0000)
committerMark Andrews <marka@isc.org>
Fri, 12 Aug 2005 01:32:01 +0000 (01:32 +0000)
lib/bind/nameser/ns_parse.c

index 7487be39a2ca0ba4c60316f367ab105a03bb1d9c..2c0351970a6c3b0bcf7c473814fdc41ffc177354 100644 (file)
@@ -16,7 +16,7 @@
  */
 
 #ifndef lint
-static const char rcsid[] = "$Id: ns_parse.c,v 1.6 2005/04/27 04:56:40 sra Exp $";
+static const char rcsid[] = "$Id: ns_parse.c,v 1.7 2005/08/12 01:32:01 marka Exp $";
 #endif
 
 /* Import. */
@@ -40,7 +40,12 @@ static void  setsection(ns_msg *msg, ns_sect sect);
 
 /* Macros. */
 
+#ifndef SOLARIS2
 #define RETERR(err) do { errno = (err); return (-1); } while (0)
+#else
+#define RETERR(err) \
+       do { errno = (err); if (errno == errno) return (-1); } while (0)
+#endif
 
 /* Public. */