summaryrefslogtreecommitdiff
path: root/frm/frm.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2001-09-20 07:48:13 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2001-09-20 07:48:13 +0000
commitabd8c5c5f57d9f8cfb5ad8f29e0478fcbee437e6 (patch)
treeaa1fd634f1b4b2f5d79f1e8f2bc9905a7ef7af52 /frm/frm.c
parent4ac3c3d33c01434316648e856293ea9815003765 (diff)
downloadmailutils-abd8c5c5f57d9f8cfb5ad8f29e0478fcbee437e6.tar.gz
mailutils-abd8c5c5f57d9f8cfb5ad8f29e0478fcbee437e6.tar.bz2
Print newline not depending on the presence of Subject header.
Diffstat (limited to 'frm/frm.c')
-rw-r--r--frm/frm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/frm/frm.c b/frm/frm.c
index 4f3a53956..875b0845d 100644
--- a/frm/frm.c
+++ b/frm/frm.c
@@ -180,8 +180,9 @@ action (observer_t o, size_t type)
int status = header_get_value (hdr, MU_HEADER_SUBJECT, hsubject,
sizeof (hsubject), NULL);
if(status == 0)
- printf("%s\n", hsubject);
+ printf("%s", hsubject);
}
+ printf ("\n");
break;
}

Return to:

Send suggestions and report system problems to the System administrator.