Ignore:
Timestamp:
04/12/12 20:05:44 (13 years ago)
Author:
tbretz
Message:
Updated to v19r31
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/dim/src/tcpip.c

    r13135 r13339  
    6767#include <errno.h>
    6868#include <netdb.h>
     69
    6970#endif
    7071
     
    890891        int path, val, ret_code, ret;
    891892        int a,b,c,d;
    892         unsigned char ipaddr[4];
     893/* Fix for gcc 4.6 "dereferencing type-punned pointer will break strict-aliasing rules"?!*/
     894        unsigned char ipaddr_buff[4];
     895        unsigned char *ipaddr = ipaddr_buff;
    893896        int host_number = 0;
    894897
Note: See TracChangeset for help on using the changeset viewer.