add root check

merge-requests/7/head
Caleb Connolly 3 years ago
parent 4c49647382
commit 6fc95a16ee
No known key found for this signature in database
GPG Key ID: 0583312B195F64B6
  1. 5
      qbootctl.cpp

@ -148,6 +148,11 @@ int main(int argc, char **argv)
impl = &bootctl_test; impl = &bootctl_test;
} }
if(geteuid() != 0) {
fprintf(stderr, "This program must be run as root!\n");
return 1;
}
switch (argc) { switch (argc) {
case 1: case 1:
dump_info(); dump_info();

Loading…
Cancel
Save