X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Frcvtty.c;h=63a97b9a9294a4a6b40ed95fc89c8eaf16a2b9bd;hb=e7129bf90a1b361e07365002379d8d2874c0f771;hp=048407a17869c11d92df61c661916e9caf57881e;hpb=49e0326aeef4cdc75898bf3049bfa3c123688e0f;p=mmh diff --git a/uip/rcvtty.c b/uip/rcvtty.c index 048407a..63a97b9 100644 --- a/uip/rcvtty.c +++ b/uip/rcvtty.c @@ -22,7 +22,9 @@ #include #include +#ifdef HAVE_GETUTXENT #include +#endif /* HAVE_GETUTXENT */ #define SCANFMT \ "%2(hour{dtimenow}):%02(min{dtimenow}): %<(size)%5(size) %>%<{encrypted}E%>\ @@ -156,6 +158,7 @@ main (int argc, char **argv) user = getusername(); +#if HAVE_GETUTXENT setutxent(); while ((utp = getutxent()) != NULL) { if (utp->ut_type == USER_PROCESS && utp->ut_user[0] != 0 @@ -166,6 +169,7 @@ main (int argc, char **argv) } } endutxent(); +#endif /* HAVE_GETUTXENT */ exit (RCV_MOK); return 0; /* dead code to satisfy the compiler */