summaryrefslogtreecommitdiffstats
path: root/sysutils/gnome-system-monitor/files/patch-src_openfiles.cpp
blob: b30001818153f9c2991b5acc16d8f63daa376326 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- src/openfiles.cpp.orig  Thu Dec 14 17:49:02 2006
+++ src/openfiles.cpp   Fri Dec 22 13:49:23 2006
@@ -6,6 +6,7 @@
 #include <netdb.h>
 #include <sys/types.h>
 #include <sys/socket.h>
+#include <netinet/in.h>
 #include <arpa/inet.h>
 
 #include "procman.h"
@@ -53,7 +54,11 @@ friendlier_hostname(const char *dotted_q
        goto failsafe;
 
 
+#if defined(__FreeBSD__) && __FreeBSD_version < 601103
+   host = gethostbyaddr((char *) &addr4, sizeof addr4, AF_INET);
+#else
    host = gethostbyaddr(&addr4, sizeof addr4, AF_INET);
+#endif
 
    if(!host)
        goto failsafe;