X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=jbsockets.c;h=728482038ddee5b15152a02851ba52114824cdb8;hb=ae99f3faaf55df0e6e3b4b62ef687b03b9733b7f;hp=5da793e177b0b847398f1a9a13cb6dcd7f5f9ab2;hpb=526945452a706b9711127abb8c6183ce9dd913bf;p=privoxy.git diff --git a/jbsockets.c b/jbsockets.c index 5da793e1..72848203 100644 --- a/jbsockets.c +++ b/jbsockets.c @@ -1,4 +1,4 @@ -const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.14 2001/07/18 13:47:59 oes Exp $"; +const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.15 2001/07/29 17:40:43 jongfoster Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/jbsockets.c,v $ @@ -35,6 +35,9 @@ const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.14 2001/07/18 13:47:59 oes Ex * * Revisions : * $Log: jbsockets.c,v $ + * Revision 1.15 2001/07/29 17:40:43 jongfoster + * Fixed compiler warning by adding a cast + * * Revision 1.14 2001/07/18 13:47:59 oes * Eliminated dirty hack for getsockbyname() * @@ -152,9 +155,9 @@ int connect_to(const char *host, int portnum, struct client_state *csp) int flags; #endif /* !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) */ -#ifdef ACL_FILES +#ifdef FEATURE_ACL struct access_control_addr dst[1]; -#endif /* def ACL_FILES */ +#endif /* def FEATURE_ACL */ memset((char *)&inaddr, 0, sizeof inaddr); @@ -164,7 +167,7 @@ int connect_to(const char *host, int portnum, struct client_state *csp) return(-1); } -#ifdef ACL_FILES +#ifdef FEATURE_ACL dst->addr = ntohl(addr); dst->port = portnum; @@ -173,7 +176,7 @@ int connect_to(const char *host, int portnum, struct client_state *csp) errno = EPERM; return(-1); } -#endif /* def ACL_FILES */ +#endif /* def FEATURE_ACL */ inaddr.sin_addr.s_addr = addr; inaddr.sin_family = AF_INET;