Dave Shield wrote: > Robert Story wrote: > >> On Fri, 30 Jun 2006 13:55:59 +0200 Thomas wrote: >> TA> 1506-068 (S) Operation between types "unsigned int" and "unsigned >> int*" >> TA> is not allowed. >> TA> TA> A value of type "unsigned int *" cannot be assigned to an >> entity of type >> TA> "in_addr_t". >> TA> TA> in.s_addr = (unsigned int *) dataptr; >> TA> TA> Can anyone propose a fix? >> >> Well, it'd either be >> >> in.s_addr = *(unsigned int *) dataptr; >> >> or >> >> in.s_addr = (unsigned int) dataptr; >> >> depending on the caller... > Judging by the context of the rest of that routine, I'd be inclined to go > with the former.
Committed (to MAIN). +Thomas -- Thomas Anders (thomas.anders at blue-cable.de) Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Net-snmp-coders mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/net-snmp-coders
