Rename "sun" variable to avoid conflicts on Solaris
authorChristian Biesinger <cbiesinger@google.com>
Wed, 18 Dec 2019 22:50:55 +0000 (16:50 -0600)
committerChristian Biesinger <cbiesinger@google.com>
Thu, 19 Dec 2019 19:02:39 +0000 (13:02 -0600)
A Solaris system header has a #define for "sun".  This renames
that variable to avoid the conflict, fixing a build error with
--enable-targets=all on Solaris.

gdb/ChangeLog:

2019-12-19  Christian Biesinger  <cbiesinger@google.com>

* fbsd-tdep.c (fbsd_info_proc_files_entry): Rename local var
"sun" to "saddr_un".

Change-Id: I07a5cd801db1e28ccab8a473ebad74d7afe017c2

gdb/ChangeLog
gdb/fbsd-tdep.c

index aad9c632bbdea6090f6e514e14f8af0722f4b1a0..e0da79eda815c77c67e9afca7492d3e8bbae76c0 100644 (file)
@@ -1,3 +1,8 @@
+2019-12-19  Christian Biesinger  <cbiesinger@google.com>
+
+       * fbsd-tdep.c (fbsd_info_proc_files_entry): Rename local var
+       "sun" to "saddr_un".
+
 2019-12-19  Tom Tromey  <tromey@adacore.com>
 
        * ui-out.h (enum class field_kind): Fix comment.
index 937f696f44cb36be39f4b11e70fa34295c96a025..d7482d3b581f3931e2a0d511fef29bbfc0db9668 100644 (file)
@@ -1018,12 +1018,12 @@ fbsd_info_proc_files_entry (int kf_type, int kf_fd, int kf_flags,
 
            /* For local sockets, print out the first non-nul path
               rather than both paths.  */
-           const struct fbsd_sockaddr_un *sun
+           const struct fbsd_sockaddr_un *saddr_un
              = reinterpret_cast<const struct fbsd_sockaddr_un *> (kf_sa_local);
-           if (sun->sun_path[0] == 0)
-             sun = reinterpret_cast<const struct fbsd_sockaddr_un *>
+           if (saddr_un->sun_path[0] == 0)
+             saddr_un = reinterpret_cast<const struct fbsd_sockaddr_un *>
                (kf_sa_peer);
-           printf_filtered ("%s", sun->sun_path);
+           printf_filtered ("%s", saddr_un->sun_path);
            break;
          }
        case FBSD_AF_INET:
This page took 0.02938 seconds and 4 git commands to generate.