From ecef18c564bd609aa7640564747b807bfe1632c6 Mon Sep 17 00:00:00 2001 From: Gary Benson Date: Tue, 9 Jun 2015 10:02:25 +0100 Subject: [PATCH] Fix preprocessor conditional This commit fixes a typo in common/fileio.c where S_IWGRP was misspelled as S_IWRGRP in a preprocessor conditional, causing Host-I/O "vFile:fstat:" and File-I/O "Fstat" and "Ffstat" responses to always indicate files were not group-writable regardless of their actual status. --- gdb/ChangeLog | 5 +++++ gdb/common/fileio.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index e7a574be5f..57c4cdf4d7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2015-06-09 Gary Benson + + * common/fileio.c (fileio_mode_pack): Fix preprocessor + conditional. + 2015-06-05 Gary Benson * gdb_bfd.c (gdb_bfd_open): Move vgdb special case to... diff --git a/gdb/common/fileio.c b/gdb/common/fileio.c index 28335ecf3c..ef00ea871e 100644 --- a/gdb/common/fileio.c +++ b/gdb/common/fileio.c @@ -132,7 +132,7 @@ fileio_mode_pack (mode_t mode) if (mode & S_IRGRP) tmode |= FILEIO_S_IRGRP; #endif -#ifdef S_IWRGRP +#ifdef S_IWGRP if (mode & S_IWGRP) tmode |= FILEIO_S_IWGRP; #endif -- 2.34.1