Files
bpfire/src/misc-progs/mpfirectrl.c
Michael Tremer 5efedb5487 misc-progs: mpfirectrl: Use new run() function
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2021-01-27 21:06:57 +00:00

16 lines
320 B
C

/* This file is part of the IPFire Firewall.
*
* This program is distributed under the terms of the GNU General Public
* Licence. See the file COPYING for details.
*
*/
#include "setuid.h"
int main(int argc, char** argv) {
if (!initsetuid())
exit(1);
return run("/var/ipfire/mpfire/bin/mpfire.pl", argv);
}