mirror of
https://github.com/sudo-project/sudo.git
synced 2025-09-05 00:35:14 +00:00
Fix typo in ternary operator usage.
This commit is contained in:
@@ -138,7 +138,7 @@ main(int argc, char *argv[])
|
||||
#endif
|
||||
|
||||
#if !defined(HAVE_GETPROGNAME) && !defined(HAVE___PROGNAME)
|
||||
setprogname(argc > 0 argv[0] ? "testsudoers");
|
||||
setprogname(argc > 0 ? argv[0] : "testsudoers");
|
||||
#endif
|
||||
|
||||
dflag = 0;
|
||||
|
Reference in New Issue
Block a user