Fixes...

* [EMAIL PROTECTED] (D Luff) [2002.02.12 07:42]:
> In net_send.cxx, in NetworkOLK, we have the following at line 262:
>    if (host_info = gethostbyname( src_host)) {

     if ((host_info = gethostbyname( src_host)) != NULL) {


> at line 270:
>    if (host_info = gethostbyname( fgd_host)) {

     if ((host_info = gethostbyname( fgd_host) != NULL) {

> and at line 298:
>    if (host_info = gethostbyname( fgd_host_check)) {

     if ((host_info = gethostbyname( fgd_host_check)) != NULL) {
-- 
Cameron Moore
[ I'm trying to daydream, but my mind keeps wandering. ]

_______________________________________________
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Reply via email to