root check

This commit is contained in:
Bjorn Andersson 2006-06-11 12:45:46 +00:00
parent 1e9df58f2f
commit a83a975299
2 changed files with 10 additions and 0 deletions

View file

@ -134,6 +134,11 @@ main(int argc, char **argv)
struct passwd *pw;
username = NULL;
if (geteuid() != 0) {
printf("Run as root and you'll be happy.\n");
usage();
}
while ((choice = getopt(argc, argv, "u:")) != -1) {
switch(choice) {

View file

@ -131,6 +131,11 @@ main(int argc, char **argv)
struct passwd *pw;
username = NULL;
if (geteuid() != 0) {
printf("Run as root and you'll be happy.\n");
usage();
}
while ((choice = getopt(argc, argv, "u:")) != -1) {
switch(choice) {