Fix warnings in ifchd-parse.rl. Just needed function prototypes.

This commit is contained in:
Nicholas J. Kain 2014-03-10 19:29:19 -04:00
parent e5c7493bc8
commit eec497adf5
4 changed files with 37 additions and 2 deletions

34
ndhc/ifchd-parse.h Normal file
View File

@ -0,0 +1,34 @@
/* ifchd-parse.h - interface change daemon parser
*
* Copyright (c) 2004-2014 Nicholas J. Kain <njkain at gmail dot com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _NJK_NDHC_IFCHD_PARSE_H_
#define _NJK_NDHC_IFCHD_PARSE_H_
extern int execute_buffer(char *newbuf);
#endif /* _NJK_NDHC_IFCHD_PARSE_H_ */

View File

@ -30,6 +30,7 @@
#include <string.h>
#include <arpa/inet.h>
#include "ifchd-parse.h"
#include "ifchd.h"
#include "log.h"
#include "ifch_proto.h"

View File

@ -51,6 +51,7 @@
#include "pidfile.h"
#include "signals.h"
#include "ifch_proto.h"
#include "ifchd-parse.h"
#include "strl.h"
#include "cap.h"
#include "io.h"
@ -79,8 +80,6 @@ extern int pToNdhcW;
extern char chroot_dir[MAX_PATH_LENGTH];
extern char resolv_conf_d[MAX_PATH_LENGTH];
extern int execute_buffer(char *newbuf);
static void writeordie(int fd, const char *buf, int len)
{
if (safe_write(fd, buf, len) == -1)

View File

@ -26,6 +26,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdbool.h>
#include "seccomp.h"
#include "log.h"
#include "seccomp-bpf.h"