- (djm) OpenBSD CVS Sync

- markus@cvs.openbsd.org 2002/09/08 20:24:08
     [hostfile.h]
     no comma at end of enumerator list
This commit is contained in:
Damien Miller 2002-09-12 09:43:56 +10:00
parent 71eb0c1550
commit 4d53d39b07
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
20020912
- (djm) OpenBSD CVS Sync
- markus@cvs.openbsd.org 2002/09/08 20:24:08
[hostfile.h]
no comma at end of enumerator list
20020911
- (djm) Sync openbsd-compat with OpenBSD -current
@ -1617,4 +1623,4 @@
- (stevesk) entropy.c: typo in debug message
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
$Id: ChangeLog,v 1.2451 2002/09/11 00:29:11 djm Exp $
$Id: ChangeLog,v 1.2452 2002/09/11 23:43:56 djm Exp $

View File

@ -1,4 +1,4 @@
/* $OpenBSD: hostfile.h,v 1.11 2002/07/24 16:11:18 markus Exp $ */
/* $OpenBSD: hostfile.h,v 1.12 2002/09/08 20:24:08 markus Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@ -15,7 +15,7 @@
#define HOSTFILE_H
typedef enum {
HOST_OK, HOST_NEW, HOST_CHANGED, HOST_FOUND,
HOST_OK, HOST_NEW, HOST_CHANGED, HOST_FOUND
} HostStatus;
int hostfile_read_key(char **, u_int *, Key *);