I don't understand why gcc now aborts on this, but *shrug* Jeff -- Jeffrey Stedfast Evolution Hacker - Novell, Inc. fejj ximian com - www.novell.com
? 67028.patch ? camel-tls.patch Index: ChangeLog =================================================================== RCS file: /cvs/gnome/evolution/camel/ChangeLog,v retrieving revision 1.2251.2.12 diff -u -r1.2251.2.12 ChangeLog --- ChangeLog 29 Sep 2004 01:57:11 -0000 1.2251.2.12 +++ ChangeLog 4 Oct 2004 18:16:04 -0000 @@ -1,3 +1,9 @@ +2004-10-04 Jeffrey Stedfast <fejj novell com> + + * camel-service.c (camel_getaddrinfo): Add a non-const cast for + hints when changing the ai_family member in the IPv6-disabled + case. Fixes bug #67028. + 2004-09-28 Not Zed <NotZed Ximian com> ** See bug #66509. Index: camel-service.c =================================================================== RCS file: /cvs/gnome/evolution/camel/camel-service.c,v retrieving revision 1.90.14.1 diff -u -r1.90.14.1 camel-service.c --- camel-service.c 23 Sep 2004 04:12:29 -0000 1.90.14.1 +++ camel-service.c 4 Oct 2004 18:16:04 -0000 @@ -897,7 +897,7 @@ hints = &myhints; } - hints->ai_family = AF_INET; + ((struct addrinfo *) hints)->ai_family = AF_INET; #endif msg = g_malloc0(sizeof(*msg));
Attachment:
smime.p7s
Description: S/MIME cryptographic signature