Date: Tue, 12 Dec 2000 10:01:44 -0700 From: Wes Peters <wes@softweyr.com> To: jucnik@ew.sk Cc: freebsd-security@freebsd.org Subject: Re: Interface Message-ID: <3A3659F8.B7C1F990@softweyr.com> References: <3A362FFB.4000@ew.sk>
next in thread | previous in thread | raw e-mail | index | archive | help
jucnik@ew.sk wrote: > > Hello. > > I know this is off-topic, but does anybody know, why in include file > <net/if.h> is so many errors (defined struct: aaa struct sockaddr bbb > instead of aaa struct sockaddr *bbb) ? > > i can't compile my progs without this functional... <net/if.h> has no errors in it. Your program has an error, not including the other include files that <net/if.h> needs. Locate the structures that are not defined in the include files and #include those before <net/if.h>. Repeat until the errors go away. Or, poke through the system sources for another source file that includes <net/if.h> and duplicate its list of include files. -- "Where am I, and what am I doing in this handbasket?" Wes Peters Softweyr LLC wes@softweyr.com http://softweyr.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-security" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3A3659F8.B7C1F990>