diff --git a/src/sudo_intercept.c b/src/sudo_intercept.c index 1e4cbf80d..a02607cdb 100644 --- a/src/sudo_intercept.c +++ b/src/sudo_intercept.c @@ -91,7 +91,7 @@ my_execv(const char *cmnd, char * const argv[]) /* Magic to tell dyld to do symbol interposition. */ __attribute__((__used__)) static const interpose_t interposers[] __attribute__((__section__("__DATA,__interpose"))) = { - { (void *)my_execve, (void *)execve } + { (void *)my_execve, (void *)execve }, { (void *)my_execv, (void *)execv } };