X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhshowsbr.c;h=9317defd0af4bda6c5fcad08ae2cefe52a7d0a0b;hp=08d676e035626d7f2046c2cb2ac62f681ebc1e55;hb=d8916ff5d389de5ab225cd6f40aeda1b285d0f28;hpb=9a33ff618b5901a3af815650d4b84d39ee96e529 diff --git a/uip/mhshowsbr.c b/uip/mhshowsbr.c index 08d676e..9317def 100644 --- a/uip/mhshowsbr.c +++ b/uip/mhshowsbr.c @@ -119,7 +119,7 @@ show_all_messages (CT *cts) ct = *ctp; /* if top-level type is ok, then display message */ - if (type_ok (ct, 0)) + if (type_ok (ct, 1)) show_single_message (ct, formsw); } } @@ -134,10 +134,10 @@ show_single_message (CT ct, char *form) { sigset_t set, oset; -#ifdef WAITINT - int status; -#else +#ifdef HAVE_UNION_WAIT union wait status; +#else + int status; #endif /* Allow user executable bit so that temporary directories created by @@ -172,10 +172,10 @@ show_single_message (CT ct, char *form) SIGPROCMASK (SIG_BLOCK, &set, &oset); while (wait (&status) != NOTOK) { -#ifdef WAITINT - pidcheck (status); -#else +#ifdef HAVE_UNION_WAIT pidcheck (status.w_status); +#else + pidcheck (status); #endif continue; } @@ -785,10 +785,10 @@ show_multi_internal (CT ct, int serial, int alternate) if (serial && !nowserial) { pid_t pid; int kids; -#ifdef WAITINT - int status; -#else +#ifdef HAVE_UNION_WAIT union wait status; +#else + int status; #endif kids = 0; @@ -804,10 +804,10 @@ show_multi_internal (CT ct, int serial, int alternate) } while (kids > 0 && (pid = wait (&status)) != NOTOK) { -#ifdef WAITINT - pidcheck (status); -#else +#ifdef HAVE_UNION_WAIT pidcheck (status.w_status); +#else + pidcheck (status); #endif for (part = m->mp_parts; part; part = part->mp_next) {