summaryrefslogtreecommitdiffstats
path: root/deskutils/gdesklets/files/patch-libdesklets-system-gtop.c
blob: 4ae58eb875ec0c467e402946618e1388f22f33ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--- libdesklets/system/gtop.c.orig  Sat Jan  1 20:33:47 2005
+++ libdesklets/system/gtop.c   Thu Feb 17 21:53:53 2005
@@ -48,6 +48,8 @@
 #include <sys/socket.h>
 #include <arpa/inet.h>
 
+/* for INET_ADDRSTRLEN and INET6_ADDRSTRLEN on FreeBSD 4 */
+#include <netinet/in.h>
 
 typedef struct
 {
@@ -1275,8 +1277,8 @@
         tuple = PyTuple_New(len);

         for(i = 0; i < len; ++i) {
-            p = &glibtop_sys_siglist[i];
             PyObject* d;
+            p = &glibtop_sys_siglist[i];

             d = PyDict_New();
             my_dict_add_and_decref(d, "number", PyI_L(p->number));