Fix macro warning on HAVE_PT_CHOWN

Message ID mvmlhu5vh0u.fsf@hawking.suse.de
State Committed
Headers

Commit Message

Andreas Schwab May 13, 2014, 3:24 p.m. UTC
  Tested with --enable-pt-chown=[yes|no].

Andreas.

	* config.h.in (HAVE_PT_CHOWN): Define as 0.
	* sysdeps/unix/grantpt.c (grantpt): Check HAVE_PT_CHOWN for value,
	not definedness.
---
 config.h.in            | 2 +-
 sysdeps/unix/grantpt.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
  

Comments

Roland McGrath May 13, 2014, 4:56 p.m. UTC | #1
> Tested with --enable-pt-chown=[yes|no].

OK given that testing.
  

Patch

diff --git a/config.h.in b/config.h.in
index b6e3623..a9ff1e3 100644
--- a/config.h.in
+++ b/config.h.in
@@ -251,7 +251,7 @@ 
 #undef HAVE_ARM_PCS_VFP
 
 /* The pt_chown binary is being built and used by grantpt.  */
-#undef HAVE_PT_CHOWN
+#define HAVE_PT_CHOWN 0
 
 /* ports/sysdeps/mips/configure.in  */
 /* Define if using the IEEE 754-2008 NaN encoding on the MIPS target.  */
diff --git a/sysdeps/unix/grantpt.c b/sysdeps/unix/grantpt.c
index 410dc50..2cb277c 100644
--- a/sysdeps/unix/grantpt.c
+++ b/sysdeps/unix/grantpt.c
@@ -176,7 +176,7 @@  grantpt (int fd)
   /* We have to use the helper program if it is available.  */
  helper:;
 
-#ifdef HAVE_PT_CHOWN
+#if HAVE_PT_CHOWN
   pid_t pid = __fork ();
   if (pid == -1)
     goto cleanup;