mirror of
https://github.com/linux-msm/qbootctl.git
synced 2026-02-25 13:13:44 -08:00
add root check
This commit is contained in:
@@ -148,6 +148,11 @@ int main(int argc, char **argv)
|
||||
impl = &bootctl_test;
|
||||
}
|
||||
|
||||
if(geteuid() != 0) {
|
||||
fprintf(stderr, "This program must be run as root!\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
switch (argc) {
|
||||
case 1:
|
||||
dump_info();
|
||||
|
||||
Reference in New Issue
Block a user