mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-04 11:51:02 +00:00
18 lines
247 B
C
18 lines
247 B
C
/* see 'man perlsec'
|
|
*
|
|
*/
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
|
|
#define REAL_PATH "/usr/bin/pvemailforward.pl"
|
|
|
|
int main(ac, av)
|
|
char **av;
|
|
{
|
|
execv(REAL_PATH, av);
|
|
|
|
fprintf(stderr, "exec '%s' failed\n", REAL_PATH);
|
|
|
|
return -1;
|
|
}
|