Skip to content
Snippets Groups Projects
Commit c8926138 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

commented out empty else blocks to shut up pedantic compilers

parent ab6c8a06
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment