aboutsummaryrefslogtreecommitdiff
path: root/src/dnsbase.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dnsbase.c')
-rw-r--r--src/dnsbase.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dnsbase.c b/src/dnsbase.c
index cf4b95a4..cbb658d0 100644
--- a/src/dnsbase.c
+++ b/src/dnsbase.c
@@ -247,7 +247,7 @@ struct loop_data {
247 /* Return data: */ 247 /* Return data: */
248 char *hbuf; /* Return buffer */ 248 char *hbuf; /* Return buffer */
249 size_t hbsize; /* Size of return buffer */ 249 size_t hbsize; /* Size of return buffer */
250 size_t hbcount; /* ?? */ 250 size_t hbcount; /* Number of items returned */
251 251
252 time_t ttl; /* TTL value */ 252 time_t ttl; /* TTL value */
253 dns_status status; /* Status */ 253 dns_status status; /* Status */
@@ -418,7 +418,7 @@ cname_loop_body(struct loop_data *lp)
418 break; 418 break;
419 419
420 case T_TXT: 420 case T_TXT:
421 if (lp->atype != T_ANY && lp->atype != type) 421 if (lp->atype != type)
422 continue; 422 continue;
423 l = cp[0]; 423 l = cp[0];
424 if (lp->hbcount + l >= lp->hbsize) 424 if (lp->hbcount + l >= lp->hbsize)

Return to:

Send suggestions and report system problems to the System administrator.