]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/ipf/libipf/initparse.c
MFV 45916e7c91ce: libbsdxml (expat) 2.4.7
[FreeBSD/FreeBSD.git] / sbin / ipf / libipf / initparse.c
1 /*      $FreeBSD$       */
2
3 /*
4  * Copyright (C) 2012 by Darren Reed.
5  *
6  * See the IPFILTER.LICENCE file for details on licencing.
7  *
8  * $Id$
9  */
10 #include "ipf.h"
11
12
13 char    thishost[MAXHOSTNAMELEN];
14
15
16 void initparse(void)
17 {
18         gethostname(thishost, sizeof(thishost));
19         thishost[sizeof(thishost) - 1] = '\0';
20 }