1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

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

View File

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