Can you folks see if the following code segment can get through?
I believe Fred should have fixed this already. He might be on vacation though.
Thx!
sun

// Begin of code
struct in_addr {
 unsigned int s_addr;
};
struct all_addr {
  union {
    struct in_addr addr4;
  } addr;
};

struct interface_name {
  char *intr;
};
struct in_addr get_ifaddr(char *intr);

unsigned int bar()
{
    struct all_addr addr;
    struct interface_name *intr;
    return ((addr.addr.addr4 = get_ifaddr(intr->intr)).s_addr);
}
// end of code

------------------------------------------------------------------------------
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
_______________________________________________
Open64-devel mailing list
Open64-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/open64-devel

Reply via email to