diff options
author | npmccallum <npmccallum@c587cffe-e639-0410-9787-d7902ae8ed56> | 2008-06-05 20:56:04 +0000 |
---|---|---|
committer | npmccallum <npmccallum@c587cffe-e639-0410-9787-d7902ae8ed56> | 2008-06-05 20:56:04 +0000 |
commit | 9a401f3d7392134859a809905b11b7bcfaeea50b (patch) | |
tree | f34c169d4e4f43546bd4404af8c69be09e30ea55 /src/lib/wpad.c | |
parent | 197ba7edc0ce6f6758b198821a9c6bf7c1fd1932 (diff) | |
download | libproxy-git-libproxy-0.2.3.tar.gz |
The real 0.2.3 releaselibproxy-0.2.3
Diffstat (limited to 'src/lib/wpad.c')
-rw-r--r-- | src/lib/wpad.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/wpad.c b/src/lib/wpad.c index 7c18ef4..65fffad 100644 --- a/src/lib/wpad.c +++ b/src/lib/wpad.c @@ -18,6 +18,9 @@ ******************************************************************************/ #include "misc.h" +#include "dhcp.h" +#include "dns.h" +#include "slp.h" #include "wpad.h" struct _pxWPAD { @@ -71,7 +74,7 @@ px_wpad_next(pxWPAD *self) { if (!self) return NULL; - /* Check all the detectors for a PAC */ + // Check all the detectors for a PAC pxPAC *pac = NULL; if (!(pac = px_dhcp_next(self->dhcp))) if (!(pac = px_slp_next(self->slp))) |