Commit c8926138 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

commented out empty else blocks to shut up pedantic compilers

parent ab6c8a06
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -169,8 +169,8 @@ 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
          /*
            else this is the second (or more) name we don't know
            about! */
        }
        else {
@@ -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)