* make mu_msg_str_date[_s] take an strftime-like argument for the format;

update callers
This commit is contained in:
Dirk-Jan C. Binnema
2010-11-03 07:43:46 +02:00
parent 55cd529bec
commit ef4116efc2
6 changed files with 22 additions and 18 deletions

View File

@ -57,7 +57,7 @@ view_file (const gchar *path, const gchar *fields, size_t summary_len)
g_print ("Subject: %s\n", field);
if ((date = mu_msg_get_date (msg)))
g_print ("Date: %s\n", mu_msg_str_date_s (date));
g_print ("Date: %s\n", mu_msg_str_date_s ("%c", date));
if (summary_len > 0) {
field = mu_msg_get_summary (msg, summary_len);