diff options
author | Shawn Routhier <sar@isc.org> | 2009-10-28 04:12:30 +0000 |
---|---|---|
committer | Shawn Routhier <sar@isc.org> | 2009-10-28 04:12:30 +0000 |
commit | 98bf16077d22f28e288a18e184a9d1f97cb5f4f7 (patch) | |
tree | b38c8282016ec1526d59abe313ff8317da4c21b6 /server/confpars.c | |
parent | 571c38b093626507112330e197dbbd318ba43a57 (diff) | |
download | isc-dhcp-98bf16077d22f28e288a18e184a9d1f97cb5f4f7.tar.gz |
Support for asynchronous ddns per ticket 19216 - convert to using isclib and
dnslib.
Diffstat (limited to 'server/confpars.c')
-rw-r--r-- | server/confpars.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/confpars.c b/server/confpars.c index 47e2bf45..1b3600a8 100644 --- a/server/confpars.c +++ b/server/confpars.c @@ -245,7 +245,7 @@ isc_result_t conf_file_subparse (struct parse *cfile, struct group *group, } while (1); token = next_token (&val, (unsigned *)0, cfile); - status = cfile -> warnings_occurred ? ISC_R_BADPARSE : ISC_R_SUCCESS; + status = cfile->warnings_occurred ? DHCP_R_BADPARSE : ISC_R_SUCCESS; return status; } @@ -304,7 +304,7 @@ isc_result_t lease_file_subparse (struct parse *cfile) } while (1); - status = cfile -> warnings_occurred ? ISC_R_BADPARSE : ISC_R_SUCCESS; + status = cfile->warnings_occurred ? DHCP_R_BADPARSE : ISC_R_SUCCESS; return status; } |