- (dtucker) [platform.c] Need servconf.h and extern options.

This commit is contained in:
Darren Tucker 2010-11-05 18:56:08 +11:00
parent f619d1cad9
commit 9283d8cbc5
2 changed files with 8 additions and 1 deletions

View File

@ -50,6 +50,7 @@
- (dtucker) [regress/kextype.sh] Make sha256 test depend on ECC. This is not
strictly correct since while ECC requires sha256 the reverse is not true
however it does prevent spurious test failures.
- (dtucker) [platform.c] Need servconf.h and extern options.
20101025
- (tim) [openbsd-compat/glob.h] Remove sys/cdefs.h include that came with

View File

@ -1,4 +1,4 @@
/* $Id: platform.c,v 1.14 2010/11/05 03:47:01 dtucker Exp $ */
/* $Id: platform.c,v 1.15 2010/11/05 07:56:08 dtucker Exp $ */
/*
* Copyright (c) 2006 Darren Tucker. All rights reserved.
@ -19,13 +19,19 @@
#include "config.h"
#include <sys/types.h>
#include <stdarg.h>
#include <unistd.h>
#include "log.h"
#include "buffer.h"
#include "servconf.h"
#include "platform.h"
#include "openbsd-compat/openbsd-compat.h"
extern int use_privsep;
extern ServerOptions options;
void
platform_pre_listen(void)