diff options
Diffstat (limited to 'sys/compat/svr4/svr4_socket.c')
-rw-r--r-- | sys/compat/svr4/svr4_socket.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/svr4/svr4_socket.c b/sys/compat/svr4/svr4_socket.c index 1884b07..264e654 100644 --- a/sys/compat/svr4/svr4_socket.c +++ b/sys/compat/svr4/svr4_socket.c @@ -68,10 +68,10 @@ struct svr4_sockcache_entry { struct sockaddr_un sock;/* Pathname for the socket */ udev_t dev; /* Device where the socket lives on */ ino_t ino; /* Inode where the socket lives on */ - TAILQ_ENTRY(svr4_sockcache_entry) entries; + TAILQ_ENTRY(struct svr4_sockcache_entry) entries; }; -extern TAILQ_HEAD(svr4_sockcache_head, svr4_sockcache_entry) svr4_head; +extern TAILQ_HEAD(svr4_sockcache_head, struct svr4_sockcache_entry) svr4_head; extern int svr4_str_initialized; struct sockaddr_un * |