- (dtucker) [loginrec.c openbsd-compat/xmmap.c openbsd-compat/bindresvport.c

openbsd-compat/glob.c openbsd-compat/mktemp.c openbsd-compat/port-tun.c
   openbsd-compat/readpassphrase.c openbsd-compat/strtonum.c] Include <errno.h>.
This commit is contained in:
Darren Tucker 2006-07-12 22:40:50 +10:00
Родитель c931c433f6
Коммит 2c1a02a8d0
8 изменённых файлов: 14 добавлений и 2 удалений

Просмотреть файл

@ -55,7 +55,9 @@
will allow port forwarding by all users except "anoncvs".
Currently only a very small subset of directives are supported.
ok djm@
- (dtucker) [openbsd-compat/xmmap.c] Include <errno.h>.
- (dtucker) [loginrec.c openbsd-compat/xmmap.c openbsd-compat/bindresvport.c
openbsd-compat/glob.c openbsd-compat/mktemp.c openbsd-compat/port-tun.c
openbsd-compat/readpassphrase.c openbsd-compat/strtonum.c] Include <errno.h>.
20060711
- (dtucker) [configure.ac ssh-keygen.c openbsd-compat/bsd-openpty.c
@ -4905,4 +4907,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.4401 2006/07/12 12:35:51 dtucker Exp $
$Id: ChangeLog,v 1.4402 2006/07/12 12:40:50 dtucker Exp $

Просмотреть файл

@ -153,6 +153,7 @@
#include <netinet/in.h>
#include <errno.h>
#include <fcntl.h>
#include <pwd.h>

Просмотреть файл

@ -36,6 +36,8 @@
#include "includes.h"
#include <errno.h>
#define STARTPORT 600
#define ENDPORT (IPPORT_RESERVED - 1)
#define NPORTS (ENDPORT - STARTPORT + 1)

Просмотреть файл

@ -34,10 +34,12 @@
/* OPENBSD ORIGINAL: lib/libc/gen/glob.c */
#include "includes.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <ctype.h>
#include <errno.h>
#include <pwd.h>
static long

Просмотреть файл

@ -37,8 +37,10 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <ctype.h>
#include <errno.h>
#if !defined(HAVE_MKDTEMP) || defined(HAVE_STRICT_MKSTEMP)

Просмотреть файл

@ -21,6 +21,7 @@
#include <netinet/in.h>
#include <netinet/ip.h>
#include <errno.h>
#include <fcntl.h>
#include "log.h"

Просмотреть файл

@ -31,6 +31,7 @@
#include <ctype.h>
#include <fcntl.h>
#include <readpassphrase.h>
#include <errno.h>
#ifdef TCSASOFT
# define _T_FLUSH (TCSAFLUSH|TCSASOFT)

Просмотреть файл

@ -22,6 +22,7 @@
#include "includes.h"
#ifndef HAVE_STRTONUM
#include <limits.h>
#include <errno.h>
#define INVALID 1
#define TOOSMALL 2