Module Name: src
Committed By: rmind
Date: Thu Jul 8 21:16:44 UTC 2010
Modified Files:
src/crypto/external/bsd/openssh/dist: ssh-keyscan.c
Log Message:
Add missing sys/param.h
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/crypto/external/bsd/openssh/dist/ssh-keyscan.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/crypto/external/bsd/openssh/dist/ssh-keyscan.c
diff -u src/crypto/external/bsd/openssh/dist/ssh-keyscan.c:1.2 src/crypto/external/bsd/openssh/dist/ssh-keyscan.c:1.3
--- src/crypto/external/bsd/openssh/dist/ssh-keyscan.c:1.2 Sun Jun 7 22:38:47 2009
+++ src/crypto/external/bsd/openssh/dist/ssh-keyscan.c Thu Jul 8 21:16:44 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: ssh-keyscan.c,v 1.2 2009/06/07 22:38:47 christos Exp $ */
+/* $NetBSD: ssh-keyscan.c,v 1.3 2010/07/08 21:16:44 rmind Exp $ */
/* $OpenBSD: ssh-keyscan.c,v 1.78 2009/01/22 10:02:34 djm Exp $ */
/*
* Copyright 1995, 1996 by David Mazieres <[email protected]>.
@@ -9,7 +9,9 @@
*/
#include "includes.h"
-__RCSID("$NetBSD: ssh-keyscan.c,v 1.2 2009/06/07 22:38:47 christos Exp $");
+__RCSID("$NetBSD: ssh-keyscan.c,v 1.3 2010/07/08 21:16:44 rmind Exp $");
+
+#include <sys/param.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/queue.h>