diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2015-01-15 10:14:08 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2015-01-15 10:14:08 +0000 |
commit | fde71b37d247c939c0f57c08a104b4ab30647de3 (patch) | |
tree | b230a53cb985e678a4ed19d9539d2ae033d5ed87 /cookie.c | |
parent | Merge branch 'bug/changelog' (diff) | |
parent | Do not use C99 printf format specifiers and asprintf (diff) | |
download | w3m-fde71b37d247c939c0f57c08a104b4ab30647de3.tar.gz w3m-fde71b37d247c939c0f57c08a104b4ab30647de3.zip |
Merge branch 'bug/printf'
Diffstat (limited to 'cookie.c')
-rw-r--r-- | cookie.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -247,7 +247,7 @@ find_cookie(ParsedURL *pu) Strcat(tmp, Sprintf("; $Domain=\"%s\"", p1->domain->ptr)); if (p1->portl) Strcat(tmp, - Sprintf("; $Port=\"%s\"", portlist2str(p1->portl))); + Sprintf("; $Port=\"%s\"", portlist2str(p1->portl)->ptr)); } } return tmp; @@ -463,7 +463,7 @@ save_cookies(void) continue; fprintf(fp, "%s\t%s\t%s\t%ld\t%s\t%s\t%d\t%d\t%s\t%s\t%s\n", parsedURL2Str(&p->url)->ptr, - p->name->ptr, p->value->ptr, p->expires, + p->name->ptr, p->value->ptr, (long)p->expires, p->domain->ptr, p->path->ptr, p->flag, p->version, str2charp(p->comment), (p->portl) ? portlist2str(p->portl)->ptr : "", |