]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - src/misc-progs/forwardfwctrl.c
misc-progs: Sync STRING_SIZE.
[people/teissler/ipfire-2.x.git] / src / misc-progs / forwardfwctrl.c
CommitLineData
b4f8d26c
MT
1/* This file is part of the IPFire Firewall.
2 *
3 * This program is distributed under the terms of the GNU General Public
4 * Licence. See the file COPYING for details.
5 *
6 */
7
b4f8d26c
MT
8#include "setuid.h"
9
10int main(int argc, char *argv[]) {
b4f8d26c
MT
11 if (!(initsetuid()))
12 exit(1);
13
8c60701a 14 safe_system("/var/ipfire/forward/bin/rules.pl");
b4f8d26c
MT
15 return 0;
16}