[IPv6 IRC-DEV] [CVS] Module ipv6: Change committed
Brought to you by:
zolty
From: Toni G. <zo...@us...> - 2003-01-31 12:02:58
|
CVSROOT : /cvsroot/irc-dev Module : ipv6 Commit time: 2003-01-31 12:02:56 UTC Modified files: CAMBIOS.Ipv6 include/patchlevel.h ircd/res.c Log message: INET6.18 ---------------------- diff included ---------------------- Index: ipv6/CAMBIOS.Ipv6 diff -u ipv6/CAMBIOS.Ipv6:1.17 ipv6/CAMBIOS.Ipv6:1.18 --- ipv6/CAMBIOS.Ipv6:1.17 Wed Jan 29 12:14:55 2003 +++ ipv6/CAMBIOS.Ipv6 Fri Jan 31 04:02:44 2003 @@ -1,3 +1,7 @@ +* 2003/01/31 the...@in... INET6.18 +----------------------------------------------------------------------- +Compila en FREEBSD sin problemas :) + * 2003/01/29 zo...@ir... INET6.17 ----------------------------------------------------------------------- Make depend. Index: ipv6/include/patchlevel.h diff -u ipv6/include/patchlevel.h:1.18 ipv6/include/patchlevel.h:1.19 --- ipv6/include/patchlevel.h:1.18 Wed Jan 29 12:14:55 2003 +++ ipv6/include/patchlevel.h Fri Jan 31 04:02:45 2003 @@ -49,7 +49,7 @@ \ \ \ - "+INET6.17" + "+INET6.18" /* * Deliberate empty lines Index: ipv6/ircd/res.c diff -u ipv6/ircd/res.c:1.7 ipv6/ircd/res.c:1.8 --- ipv6/ircd/res.c:1.7 Wed Jan 29 12:14:56 2003 +++ ipv6/ircd/res.c Fri Jan 31 04:02:45 2003 @@ -16,6 +16,9 @@ #include <arpa/inet.h> #include <arpa/nameser.h> #include <resolv.h> +#if defined(__FreeBSD__) +typedef struct __res_state *res_state; +#endif /* dn_skipname is really an internal function, we shouldn't be using it in res.c */ #if !defined(dn_skipname) && !defined(__dn_skipname) @@ -39,7 +42,7 @@ #include "common.h" #include "sprintf_irc.h" -RCSTAG_CC("$Id: res.c,v 1.7 2003/01/29 20:14:56 zolty Exp $"); +RCSTAG_CC("$Id: res.c,v 1.8 2003/01/31 12:02:45 zolty Exp $"); #define MAXPACKET 1024 ----------------------- End of diff ----------------------- |