pull/79/head
Alex Holst 7 years ago
commit 0300a112b5

@ -387,6 +387,8 @@ list_mime(int depth, struct message *msg, char *body, size_t bodylen)
void
list(char *file)
{
while (*file == ' ' || *file == '\t')
file++;
struct message *msg = blaze822_file(file);
if (!msg)
return;
@ -398,6 +400,8 @@ list(char *file)
void
reply(char *file)
{
while (*file == ' ' || *file == '\t')
file++;
struct message *msg = blaze822_file(file);
if (!msg)
return;

Loading…
Cancel
Save