From: Todd C. Miller Date: Thu, 28 Oct 1993 13:36:13 +0000 (+0000) Subject: added fflush() X-Git-Tag: SUDO_1_3_0~80 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b736fa27f8b18c45020f6d3be2a974d5b59b88ad;p=sudo added fflush() --- diff --git a/check.c b/check.c index 9112ea662..e6a208f77 100644 --- a/check.c +++ b/check.c @@ -256,6 +256,7 @@ static void reminder() #else (void) fprintf(stderr, "\n%s\n%s\n%s\n\n%s\n%s\n\n%s\n%s\n\n", " CU sudo version 1.3, based on Root Group sudo version 1.1", + " sudo version 1.1, Copyright (C) 1991 The Root Group, Inc.", " sudo comes with ABSOLUTELY NO WARRANTY. This is free software,", " and you are welcome to redistribute it under certain conditions.", #endif @@ -264,4 +265,6 @@ static void reminder() " #1) Respect the privacy of others.", " #2) Think before you type." ); + + (void)fflush(stderr); }