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

cookiejar now enables the cookie engine

parent 51afc3d8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -423,7 +423,7 @@ struct CookieInfo *Curl_cookie_init(char *file, struct CookieInfo *inc)
  }
  c->running = FALSE; /* this is not running, this is init */

  if(strequal(file, "-")) {
  if(file && strequal(file, "-")) {
    fp = stdin;
    fromfile=FALSE;
  }
+7 −1
Original line number Diff line number Diff line
@@ -503,7 +503,13 @@ CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...)
    /*
     * Set cookie file name to dump all cookies to when we're done.
     */
    data->set.cookiejar = cookiefile = (char *)va_arg(param, void *);
    data->set.cookiejar = (char *)va_arg(param, void *);

    /*
     * Activate the cookie parser. This may or may not already
     * have been made.
     */
    data->cookies = Curl_cookie_init(NULL, data->cookies);
    break;
  case CURLOPT_WRITEHEADER:
    /*