* src/cookie.c: Fix cookie file header to be recognized by 'file'

This commit is contained in:
Tim Rühsen 2019-11-19 11:48:54 +01:00
parent b4dba956ce
commit 6f3baab02c

View File

@ -1349,7 +1349,7 @@ cookie_jar_save (struct cookie_jar *jar, const char *file)
return;
}
fputs ("# HTTP cookie file.\n", fp);
fputs ("# HTTP Cookie File\n", fp);
fprintf (fp, "# Generated by Wget on %s.\n", datetime_str (cookies_now));
fputs ("# Edit at your own risk.\n\n", fp);