From: Todd C. Miller Date: Wed, 6 Dec 1995 00:02:13 +0000 (+0000) Subject: added set of parens and a space X-Git-Tag: SUDO_1_4_0~56 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1d04bad9cae3eaa5f5680490caa3737aef1b1c79;p=sudo added set of parens and a space --- diff --git a/sudo.c b/sudo.c index 8e9f55392..73b39f780 100644 --- a/sudo.c +++ b/sudo.c @@ -261,7 +261,7 @@ int main(argc, argv) add_env(); /* add in SUDO_* envariables */ /* validate the user but don't search for "validate" */ - rtn = validate(sudo_mode != MODE_VALIDATE); + rtn = validate((sudo_mode != MODE_VALIDATE)); switch (rtn) { case VALIDATE_OK: @@ -282,7 +282,7 @@ int main(argc, argv) struct stat st; if (stat(cmnd, &st) < 0) { - (void) fprintf(stderr, "%s: unable to stat %s:", + (void) fprintf(stderr, "%s: unable to stat %s: ", Argv[0], cmnd); perror(""); exit(1);