commented out empty else blocks to shut up pedantic compilers

This commit is contained in:
Daniel Stenberg 2001-08-14 08:17:29 +00:00
parent ab6c8a06e0
commit c8926138d1
1 changed files with 6 additions and 5 deletions

View File

@ -169,9 +169,9 @@ Curl_cookie_add(struct CookieInfo *c,
co->name = strdup(name);
co->value = strdup(what);
}
else
;/* this is the second (or more) name we don't know
about! */
/*
else this is the second (or more) name we don't know
about! */
}
else {
/* this is an "illegal" <what>=<this> pair */
@ -182,8 +182,9 @@ Curl_cookie_add(struct CookieInfo *c,
what)) {
if(strequal("secure", what))
co->secure = TRUE;
else
; /* unsupported keyword without assign! */
/* else,
unsupported keyword without assign! */
}
}
if(!semiptr)