this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Handle more arguments in fake sudo

+12
+12
src/tools/sudo.c
··· 34 34 sscanf(argv[++firstarg], "%u", &uid); 35 35 firstarg++; 36 36 } 37 + else if (!strcmp(argv[firstarg], "-A")) 38 + { 39 + firstarg++; 40 + } 41 + else if (!strcmp(argv[firstarg], "-n")) 42 + { 43 + firstarg++; 44 + } 45 + else if (!strcmp(argv[firstarg], "-v")) 46 + { 47 + firstarg++; 48 + } 37 49 else if(!strcmp(argv[firstarg], "--")) 38 50 { 39 51 firstarg++;