@@ -, +, @@ 119 | char hn[HOST_NAME_MAX] = {}; | ^~~~ --- fakesudo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/fakesudo.c +++ a/fakesudo.c @@ -115,7 +115,7 @@ int main(int argc, char **argv) case 'T': printf("fakesudo: you are not permitted to use the -%c option\n", ch); exit(1); - case 'l': + case 'l': ; char hn[HOST_NAME_MAX] = {}; gethostname(hn, sizeof hn); printf("User %s may run the following commands on %s:\n", me->pw_name, hn); --