fix typos in printfs

SVN revision: 59417
This commit is contained in:
Mike Blumenkrantz 2011-05-15 22:17:15 +00:00
parent 3942daa652
commit c7a60fd7e5
1 changed files with 2 additions and 2 deletions

View File

@ -79,12 +79,12 @@ main(int argc,
} }
if (setuid(0) != 0) if (setuid(0) != 0)
{ {
printf("ERROR: UNABLE TO ASSUME ROOT PRIVILEDGES\n"); printf("ERROR: UNABLE TO ASSUME ROOT PRIVILEGES\n");
exit(5); exit(5);
} }
if (setgid(0) != 0) if (setgid(0) != 0)
{ {
printf("ERROR: UNABLE TO ASSUME ROOT GROUP PRIVILEDGES\n"); printf("ERROR: UNABLE TO ASSUME ROOT GROUP PRIVILEGES\n");
exit(7); exit(7);
} }