diff options
author | venaas <venaas> | 2009-01-07 11:39:11 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2009-01-07 11:39:11 +0000 |
commit | 772a55eacedd6a21e484d372c6436d9ef5138934 (patch) | |
tree | ecd20eac1accc404c4582828df1ce43514e82644 /udp.c | |
parent | 355e140b8839fff12f6636b634402c72124a367e (diff) |
renamed struct queue to gqueue due to solaris defining queue
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@452 e88ac4ed-0b26-0410-9574-a7f39faa03bf
Diffstat (limited to 'udp.c')
-rw-r--r-- | udp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -64,7 +64,7 @@ static const struct protodefs protodefs = { static int client4_sock = -1; static int client6_sock = -1; -static struct queue *server_replyq = NULL; +static struct gqueue *server_replyq = NULL; static struct addrinfo *srcres = NULL; static uint8_t handle; @@ -290,7 +290,7 @@ void *udpserverrd(void *arg) { } void *udpserverwr(void *arg) { - struct queue *replyq = (struct queue *)arg; + struct gqueue *replyq = (struct gqueue *)arg; struct request *reply; struct sockaddr_storage to; |