summaryrefslogtreecommitdiff
path: root/frm/frm.c
diff options
context:
space:
mode:
authorWojciech Polak <polak@gnu.org>2004-01-13 11:02:03 +0000
committerWojciech Polak <polak@gnu.org>2004-01-13 11:02:03 +0000
commit96435a4d7de61fdd5aff4971770089c8d08f48d6 (patch)
treee809bfb40d5752fc6749f35abe058ac9a7f6e512 /frm/frm.c
parentfb6c2751c8e31256d0dbd5b954e065a37de36ad7 (diff)
downloadmailutils-96435a4d7de61fdd5aff4971770089c8d08f48d6.tar.gz
mailutils-96435a4d7de61fdd5aff4971770089c8d08f48d6.tar.bz2
Fixed
Diffstat (limited to 'frm/frm.c')
-rw-r--r--frm/frm.c26
1 files changed, 15 insertions, 11 deletions
diff --git a/frm/frm.c b/frm/frm.c
index efbb3d0b5..cc4c1d7aa 100644
--- a/frm/frm.c
+++ b/frm/frm.c
@@ -248,6 +248,7 @@ static int
action (observer_t o, size_t type)
{
static int counter;
+ int status;
switch (type)
{
@@ -296,8 +297,8 @@ action (observer_t o, size_t type)
if (show_field)
{
char hfield[256];
- int status = header_get_value_unfold (hdr, show_field, hfield,
- sizeof (hfield), NULL);
+ status = header_get_value_unfold (hdr, show_field, hfield,
+ sizeof (hfield), NULL);
if (status == 0)
printf ("%s", hfield);
}
@@ -305,7 +306,8 @@ action (observer_t o, size_t type)
if (show_to)
{
char hto[16];
- int status = get_personal (hdr, MU_HEADER_TO, hto, sizeof (hto));
+ status = get_personal (hdr, MU_HEADER_TO, hto, sizeof (hto));
+
if (status == 0)
printf ("(%s) ", hto);
else
@@ -315,8 +317,8 @@ action (observer_t o, size_t type)
if (show_from)
{
char hfrom[32];
- int status = get_personal (hdr, MU_HEADER_FROM, hfrom,
- sizeof (hfrom));
+ status = get_personal (hdr, MU_HEADER_FROM, hfrom,
+ sizeof (hfrom));
if (status == 0)
printf ("%s\t", hfrom);
else
@@ -326,12 +328,14 @@ action (observer_t o, size_t type)
if (show_subject)
{
char hsubject[64];
- int status = header_get_value_unfold (hdr, MU_HEADER_SUBJECT,
- hsubject,
- sizeof (hsubject), NULL);
- frm_rfc2047_decode (hsubject, sizeof (hsubject));
- if(status == 0)
- printf ("%s", hsubject);
+ status = header_get_value_unfold (hdr, MU_HEADER_SUBJECT,
+ hsubject,
+ sizeof (hsubject), NULL);
+ if (status == 0)
+ {
+ frm_rfc2047_decode (hsubject, sizeof (hsubject));
+ printf ("%s", hsubject);
+ }
}
printf ("\n");
break;

Return to:

Send suggestions and report system problems to the System administrator.