aboutsummaryrefslogtreecommitdiff
path: root/sldns/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'sldns/parse.c')
-rw-r--r--sldns/parse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sldns/parse.c b/sldns/parse.c
index e30a753a49bf..b62c40597756 100644
--- a/sldns/parse.c
+++ b/sldns/parse.c
@@ -33,14 +33,14 @@ ssize_t
sldns_fget_token_l(FILE *f, char *token, const char *delim, size_t limit, int *line_nr)
{
int c, prev_c;
- int p; /* 0 -> no parenthese seen, >0 nr of ( seen */
+ int p; /* 0 -> no parentheses seen, >0 nr of ( seen */
int com, quoted;
char *t;
size_t i;
const char *d;
const char *del;
- /* standard delimeters */
+ /* standard delimiters */
if (!delim) {
/* from isspace(3) */
del = LDNS_PARSE_NORMAL;
@@ -244,7 +244,7 @@ sldns_bget_token_par(sldns_buffer *b, char *token, const char *delim,
size_t limit, int* par, const char* skipw)
{
int c, lc;
- int p; /* 0 -> no parenthese seen, >0 nr of ( seen */
+ int p; /* 0 -> no parentheses seen, >0 nr of ( seen */
int com, quoted;
char *t;
size_t i;