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

CURLOPT_MAIL_RCPT is *not* a string so we must not try to printf() it

parent 2138ee76
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -5159,7 +5159,7 @@ operate(struct Configurable *config, int argc, argv_item_t argv[])
          my_setopt_str(curl, CURLOPT_MAIL_FROM, config->mail_from);

        if(config->mail_rcpt)
          my_setopt_str(curl, CURLOPT_MAIL_RCPT, config->mail_rcpt);
          my_setopt(curl, CURLOPT_MAIL_RCPT, config->mail_rcpt);

        /* curl 7.20.x */
        if(config->ftp_pret)