[exim-cvs] Fix build on platforms not supporting sockopt SO_…

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Exim Git Commits Mailing List
Datum:  
To: exim-cvs
Betreff: [exim-cvs] Fix build on platforms not supporting sockopt SO_PROTOCOL
Gitweb: https://git.exim.org/exim.git/commitdiff/9ffec364844aaf19ed4bb275760fdb30de5e91ca
Commit:     9ffec364844aaf19ed4bb275760fdb30de5e91ca
Parent:     2e9e7858462e0041feadda0e1fb67ae852dacf01
Author:     Jeremy Harris <jgh146exb@???>
AuthorDate: Sat May 2 21:09:38 2020 +0100
Committer:  Jeremy Harris <jgh146exb@???>
CommitDate: Sat May 2 21:09:38 2020 +0100


    Fix build on platforms not supporting sockopt SO_PROTOCOL


    Broken-by: a8e46b3b71
---
 src/src/debug.c | 2 ++
 1 file changed, 2 insertions(+)


diff --git a/src/src/debug.c b/src/src/debug.c
index 806573f..3a7d6a6 100644
--- a/src/src/debug.c
+++ b/src/src/debug.c
@@ -379,6 +379,7 @@ if (fstat(fd, &s) == 0 && (s.st_mode & S_IFMT) == S_IFSOCK)
       case SOCK_DGRAM:    g = string_cat(g, US" type SOCK_DGRAM"); break;
       default:    g = string_fmt_append(g, " type %d", val); break;
       }
+#ifdef SO_PROTOCOL
   if (getsockopt(fd, SOL_SOCKET, SO_PROTOCOL, &val, &vlen) == 0)
     {
     struct protoent * p = getprotobynumber(val);
@@ -386,6 +387,7 @@ if (fstat(fd, &s) == 0 && (s.st_mode & S_IFMT) == S_IFSOCK)
       ? string_fmt_append(g, " proto %s\n", p->p_name)
       : string_fmt_append(g, " proto %d", val);
     }
+#endif
   debug_printf_indent(" socket: %s\n", string_from_gstring(g));
   }
 else