summaryrefslogtreecommitdiff
path: root/lib/if.h
diff options
context:
space:
mode:
authorhasso <hasso>2004-09-23 19:18:23 +0000
committerhasso <hasso>2004-09-23 19:18:23 +0000
commit52dc7ee65f8d887b0730abc0a5d44d27fc6ecafd (patch)
treea557339540c56dd3953c29a50ca0e48c1911efc8 /lib/if.h
parent44983cf8a9c587dfbcad294b9dfe4dccbb68ba98 (diff)
Remove usage of evil list and listnode typedefs.
Diffstat (limited to 'lib/if.h')
-rw-r--r--lib/if.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/if.h b/lib/if.h
index 70a12860..47e992c3 100644
--- a/lib/if.h
+++ b/lib/if.h
@@ -117,7 +117,7 @@ struct interface
void *distribute_out;
/* Connected address list. */
- list connected;
+ struct list *connected;
/* Daemon specific interface data pointer. */
void *info;
@@ -222,7 +222,7 @@ char *if_indextoname (unsigned int, char *);
#endif
/* Exported variables. */
-extern list iflist;
+extern struct list *iflist;
extern struct cmd_element interface_desc_cmd;
extern struct cmd_element no_interface_desc_cmd;
extern struct cmd_element interface_cmd;