summaryrefslogtreecommitdiffstats
path: root/openbsd-compat
diff options
context:
space:
mode:
Diffstat (limited to 'openbsd-compat')
-rw-r--r--openbsd-compat/Makefile.in2
-rw-r--r--openbsd-compat/base64.h2
-rw-r--r--openbsd-compat/bindresvport.h2
-rw-r--r--openbsd-compat/bsd-arc4random.c2
-rw-r--r--openbsd-compat/bsd-arc4random.h2
-rw-r--r--openbsd-compat/bsd-cygwin_util.c4
-rw-r--r--openbsd-compat/bsd-cygwin_util.h2
-rw-r--r--openbsd-compat/bsd-misc.c2
-rw-r--r--openbsd-compat/bsd-misc.h2
-rw-r--r--openbsd-compat/bsd-nextstep.c2
-rw-r--r--openbsd-compat/bsd-nextstep.h2
-rw-r--r--openbsd-compat/bsd-snprintf.c4
-rw-r--r--openbsd-compat/bsd-snprintf.h2
-rw-r--r--openbsd-compat/bsd-waitpid.c2
-rw-r--r--openbsd-compat/bsd-waitpid.h2
-rw-r--r--openbsd-compat/daemon.h2
-rw-r--r--openbsd-compat/fake-gai-errnos.h2
-rw-r--r--openbsd-compat/fake-getaddrinfo.c2
-rw-r--r--openbsd-compat/fake-getaddrinfo.h2
-rw-r--r--openbsd-compat/fake-getnameinfo.c2
-rw-r--r--openbsd-compat/fake-getnameinfo.h2
-rw-r--r--openbsd-compat/fake-socket.h2
-rw-r--r--openbsd-compat/getcwd.h2
-rw-r--r--openbsd-compat/getgrouplist.h2
-rw-r--r--openbsd-compat/inet_aton.h2
-rw-r--r--openbsd-compat/inet_ntoa.h2
-rw-r--r--openbsd-compat/mktemp.h2
-rw-r--r--openbsd-compat/openbsd-compat.h2
-rw-r--r--openbsd-compat/realpath.h2
-rw-r--r--openbsd-compat/rresvport.h2
-rw-r--r--openbsd-compat/setenv.h2
-rw-r--r--openbsd-compat/setproctitle.h2
-rw-r--r--openbsd-compat/strlcat.h2
-rw-r--r--openbsd-compat/strlcpy.h2
-rw-r--r--openbsd-compat/strmode.h2
-rw-r--r--openbsd-compat/strsep.h2
-rw-r--r--openbsd-compat/strtok.h2
-rw-r--r--openbsd-compat/vis.h2
38 files changed, 78 insertions, 2 deletions
diff --git a/openbsd-compat/Makefile.in b/openbsd-compat/Makefile.in
index e88a5c6b..f243870b 100644
--- a/openbsd-compat/Makefile.in
+++ b/openbsd-compat/Makefile.in
@@ -1,3 +1,5 @@
+# $Id: Makefile.in,v 1.5 2001/02/09 01:55:36 djm Exp $
+
sysconfdir=@sysconfdir@
piddir=@piddir@
srcdir=@srcdir@
diff --git a/openbsd-compat/base64.h b/openbsd-compat/base64.h
index c1d69dd6..f2514dc1 100644
--- a/openbsd-compat/base64.h
+++ b/openbsd-compat/base64.h
@@ -1,3 +1,5 @@
+/* $Id: base64.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_BASE64_H
#define _BSD_BASE64_H
diff --git a/openbsd-compat/bindresvport.h b/openbsd-compat/bindresvport.h
index 6dbf8a2c..b42f4698 100644
--- a/openbsd-compat/bindresvport.h
+++ b/openbsd-compat/bindresvport.h
@@ -1,3 +1,5 @@
+/* $Id: bindresvport.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_BINDRESVPORT_H
#define _BSD_BINDRESVPORT_H
diff --git a/openbsd-compat/bsd-arc4random.c b/openbsd-compat/bsd-arc4random.c
index c45459f5..87c7da5f 100644
--- a/openbsd-compat/bsd-arc4random.c
+++ b/openbsd-compat/bsd-arc4random.c
@@ -24,6 +24,8 @@
#include "includes.h"
+RCSID("$Id: bsd-arc4random.c,v 1.2 2001/02/09 01:55:36 djm Exp $");
+
#ifndef HAVE_ARC4RANDOM
#include <openssl/rand.h>
diff --git a/openbsd-compat/bsd-arc4random.h b/openbsd-compat/bsd-arc4random.h
index 9819b848..7af757b2 100644
--- a/openbsd-compat/bsd-arc4random.h
+++ b/openbsd-compat/bsd-arc4random.h
@@ -22,6 +22,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+/* $Id: bsd-arc4random.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_ARC4RANDOM_H
#define _BSD_ARC4RANDOM_H
diff --git a/openbsd-compat/bsd-cygwin_util.c b/openbsd-compat/bsd-cygwin_util.c
index b540ebe1..2dcb3552 100644
--- a/openbsd-compat/bsd-cygwin_util.c
+++ b/openbsd-compat/bsd-cygwin_util.c
@@ -13,7 +13,9 @@
* binary mode on Windows systems.
*/
-#include "config.h"
+#include "includes.h"
+
+RCSID("$Id: bsd-cygwin_util.c,v 1.2 2001/02/09 01:55:36 djm Exp $");
#ifdef HAVE_CYGWIN
diff --git a/openbsd-compat/bsd-cygwin_util.h b/openbsd-compat/bsd-cygwin_util.h
index bf90d029..b5d63cdc 100644
--- a/openbsd-compat/bsd-cygwin_util.h
+++ b/openbsd-compat/bsd-cygwin_util.h
@@ -13,6 +13,8 @@
* binary mode on Windows systems.
*/
+/* $Id: bsd-cygwin_util.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#include "config.h"
#ifdef HAVE_CYGWIN
diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c
index 2e59019b..c0d2d65e 100644
--- a/openbsd-compat/bsd-misc.c
+++ b/openbsd-compat/bsd-misc.c
@@ -26,6 +26,8 @@
#include "xmalloc.h"
#include "ssh.h"
+RCSID("$Id: bsd-misc.c,v 1.2 2001/02/09 01:55:36 djm Exp $");
+
char *get_progname(char *argv0)
{
#ifdef HAVE___PROGNAME
diff --git a/openbsd-compat/bsd-misc.h b/openbsd-compat/bsd-misc.h
index e02c6678..61443b81 100644
--- a/openbsd-compat/bsd-misc.h
+++ b/openbsd-compat/bsd-misc.h
@@ -22,6 +22,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+/* $Id: bsd-misc.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_MISC_H
#define _BSD_MISC_H
diff --git a/openbsd-compat/bsd-nextstep.c b/openbsd-compat/bsd-nextstep.c
index b6cdb3fa..64962d01 100644
--- a/openbsd-compat/bsd-nextstep.c
+++ b/openbsd-compat/bsd-nextstep.c
@@ -22,6 +22,8 @@
#include "includes.h"
+RCSID("$Id: bsd-nextstep.c,v 1.3 2001/02/09 01:55:36 djm Exp $");
+
#ifdef HAVE_NEXT
#include <errno.h>
#include <sys/wait.h>
diff --git a/openbsd-compat/bsd-nextstep.h b/openbsd-compat/bsd-nextstep.h
index 3e16dacb..d7f44bfc 100644
--- a/openbsd-compat/bsd-nextstep.h
+++ b/openbsd-compat/bsd-nextstep.h
@@ -21,6 +21,8 @@
*
*/
+/* $Id: bsd-nextstep.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _NEXT_POSIX_H
#define _NEXT_POSIX_H
diff --git a/openbsd-compat/bsd-snprintf.c b/openbsd-compat/bsd-snprintf.c
index 59fefbf2..c75359c5 100644
--- a/openbsd-compat/bsd-snprintf.c
+++ b/openbsd-compat/bsd-snprintf.c
@@ -44,7 +44,9 @@
* right.
**************************************************************/
-#include "config.h"
+#include "includes.h"
+
+RCSID("$Id: bsd-snprintf.c,v 1.2 2001/02/09 01:55:36 djm Exp $");
#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF)
diff --git a/openbsd-compat/bsd-snprintf.h b/openbsd-compat/bsd-snprintf.h
index ed7a21c9..002b764e 100644
--- a/openbsd-compat/bsd-snprintf.h
+++ b/openbsd-compat/bsd-snprintf.h
@@ -1,3 +1,5 @@
+/* $Id: bsd-snprintf.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_SNPRINTF_H
#define _BSD_SNPRINTF_H
diff --git a/openbsd-compat/bsd-waitpid.c b/openbsd-compat/bsd-waitpid.c
index 0bf4c7cd..1a96bbf7 100644
--- a/openbsd-compat/bsd-waitpid.c
+++ b/openbsd-compat/bsd-waitpid.c
@@ -22,6 +22,8 @@
#include "includes.h"
+RCSID("$Id: bsd-waitpid.c,v 1.2 2001/02/09 01:55:36 djm Exp $");
+
#ifndef HAVE_WAITPID
#include <errno.h>
#include <sys/wait.h>
diff --git a/openbsd-compat/bsd-waitpid.h b/openbsd-compat/bsd-waitpid.h
index 25c6e9c8..e24edd79 100644
--- a/openbsd-compat/bsd-waitpid.h
+++ b/openbsd-compat/bsd-waitpid.h
@@ -21,6 +21,8 @@
*
*/
+/* $Id: bsd-waitpid.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_WAITPID_H
#define _BSD_WAITPID_H
diff --git a/openbsd-compat/daemon.h b/openbsd-compat/daemon.h
index cd91ea07..95a07735 100644
--- a/openbsd-compat/daemon.h
+++ b/openbsd-compat/daemon.h
@@ -1,3 +1,5 @@
+/* $Id: daemon.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_DAEMON_H
#define _BSD_DAEMON_H
diff --git a/openbsd-compat/fake-gai-errnos.h b/openbsd-compat/fake-gai-errnos.h
index 27f6089e..5edc31b5 100644
--- a/openbsd-compat/fake-gai-errnos.h
+++ b/openbsd-compat/fake-gai-errnos.h
@@ -5,6 +5,8 @@
* See getaddrinfo.c and getnameinfo.c.
*/
+/* $Id: fake-gai-errnos.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
/* for old netdb.h */
#ifndef EAI_NODATA
#define EAI_NODATA 1
diff --git a/openbsd-compat/fake-getaddrinfo.c b/openbsd-compat/fake-getaddrinfo.c
index 73c122ed..67e9eb78 100644
--- a/openbsd-compat/fake-getaddrinfo.c
+++ b/openbsd-compat/fake-getaddrinfo.c
@@ -12,6 +12,8 @@
#include "includes.h"
#include "ssh.h"
+RCSID("$Id: fake-getaddrinfo.c,v 1.2 2001/02/09 01:55:36 djm Exp $");
+
#ifndef HAVE_GAI_STRERROR
char *gai_strerror(int ecode)
{
diff --git a/openbsd-compat/fake-getaddrinfo.h b/openbsd-compat/fake-getaddrinfo.h
index 7da87142..afd0226e 100644
--- a/openbsd-compat/fake-getaddrinfo.h
+++ b/openbsd-compat/fake-getaddrinfo.h
@@ -1,3 +1,5 @@
+/* $Id: fake-getaddrinfo.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _FAKE_GETADDRINFO_H
#define _FAKE_GETADDRINFO_H
diff --git a/openbsd-compat/fake-getnameinfo.c b/openbsd-compat/fake-getnameinfo.c
index 203621f0..e255ed33 100644
--- a/openbsd-compat/fake-getnameinfo.c
+++ b/openbsd-compat/fake-getnameinfo.c
@@ -12,6 +12,8 @@
#include "includes.h"
#include "ssh.h"
+RCSID("$Id: fake-getnameinfo.c,v 1.2 2001/02/09 01:55:36 djm Exp $");
+
#ifndef HAVE_GETNAMEINFO
int getnameinfo(const struct sockaddr *sa, size_t salen, char *host,
size_t hostlen, char *serv, size_t servlen, int flags)
diff --git a/openbsd-compat/fake-getnameinfo.h b/openbsd-compat/fake-getnameinfo.h
index 0d25f427..c9b7908a 100644
--- a/openbsd-compat/fake-getnameinfo.h
+++ b/openbsd-compat/fake-getnameinfo.h
@@ -1,3 +1,5 @@
+/* $Id: fake-getnameinfo.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _FAKE_GETNAMEINFO_H
#define _FAKE_GETNAMEINFO_H
diff --git a/openbsd-compat/fake-socket.h b/openbsd-compat/fake-socket.h
index b51caa03..bfc9d152 100644
--- a/openbsd-compat/fake-socket.h
+++ b/openbsd-compat/fake-socket.h
@@ -1,3 +1,5 @@
+/* $Id: fake-socket.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _FAKE_SOCKET_H
#define _FAKE_SOCKET_H
diff --git a/openbsd-compat/getcwd.h b/openbsd-compat/getcwd.h
index bee73865..1137b3ed 100644
--- a/openbsd-compat/getcwd.h
+++ b/openbsd-compat/getcwd.h
@@ -1,3 +1,5 @@
+/* $Id: getcwd.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_GETCWD_H
#define _BSD_GETCWD_H
#include "config.h"
diff --git a/openbsd-compat/getgrouplist.h b/openbsd-compat/getgrouplist.h
index ef9e6011..27a9703f 100644
--- a/openbsd-compat/getgrouplist.h
+++ b/openbsd-compat/getgrouplist.h
@@ -1,3 +1,5 @@
+/* $Id: getgrouplist.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_GETGROUPLIST_H
#define _BSD_GETGROUPLIST_H
diff --git a/openbsd-compat/inet_aton.h b/openbsd-compat/inet_aton.h
index ec3c225c..aafb7555 100644
--- a/openbsd-compat/inet_aton.h
+++ b/openbsd-compat/inet_aton.h
@@ -1,3 +1,5 @@
+/* $Id: inet_aton.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_INET_ATON_H
#define _BSD_INET_ATON_H
diff --git a/openbsd-compat/inet_ntoa.h b/openbsd-compat/inet_ntoa.h
index e3d48e4a..85bc3d6f 100644
--- a/openbsd-compat/inet_ntoa.h
+++ b/openbsd-compat/inet_ntoa.h
@@ -1,3 +1,5 @@
+/* $Id: inet_ntoa.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_INET_NTOA_H
#define _BSD_INET_NTOA_H
diff --git a/openbsd-compat/mktemp.h b/openbsd-compat/mktemp.h
index faddc916..6a96f6fa 100644
--- a/openbsd-compat/mktemp.h
+++ b/openbsd-compat/mktemp.h
@@ -1,3 +1,5 @@
+/* $Id: mktemp.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_MKTEMP_H
#define _BSD_MKTEMP_H
diff --git a/openbsd-compat/openbsd-compat.h b/openbsd-compat/openbsd-compat.h
index 4758a9c5..b3e6a5eb 100644
--- a/openbsd-compat/openbsd-compat.h
+++ b/openbsd-compat/openbsd-compat.h
@@ -1,3 +1,5 @@
+/* $Id: openbsd-compat.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _OPENBSD_H
#define _OPENBSD_H
diff --git a/openbsd-compat/realpath.h b/openbsd-compat/realpath.h
index dc3579dd..25e4075d 100644
--- a/openbsd-compat/realpath.h
+++ b/openbsd-compat/realpath.h
@@ -1,3 +1,5 @@
+/* $Id: realpath.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_REALPATH_H
#define _BSD_REALPATH_H
diff --git a/openbsd-compat/rresvport.h b/openbsd-compat/rresvport.h
index d139895e..a52e4515 100644
--- a/openbsd-compat/rresvport.h
+++ b/openbsd-compat/rresvport.h
@@ -1,3 +1,5 @@
+/* $Id: rresvport.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_RRESVPORT_H
#define _BSD_RRESVPORT_H
diff --git a/openbsd-compat/setenv.h b/openbsd-compat/setenv.h
index 62ebc201..77256d80 100644
--- a/openbsd-compat/setenv.h
+++ b/openbsd-compat/setenv.h
@@ -1,3 +1,5 @@
+/* $Id: setenv.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_SETENV_H
#define _BSD_SETENV_H
diff --git a/openbsd-compat/setproctitle.h b/openbsd-compat/setproctitle.h
index 000689fa..8261bd0e 100644
--- a/openbsd-compat/setproctitle.h
+++ b/openbsd-compat/setproctitle.h
@@ -1,3 +1,5 @@
+/* $Id: setproctitle.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_SETPROCTITLE_H
#define _BSD_SETPROCTITLE_H
diff --git a/openbsd-compat/strlcat.h b/openbsd-compat/strlcat.h
index 562dc704..75366856 100644
--- a/openbsd-compat/strlcat.h
+++ b/openbsd-compat/strlcat.h
@@ -1,3 +1,5 @@
+/* $Id: strlcat.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_STRLCAT_H
#define _BSD_STRLCAT_H
diff --git a/openbsd-compat/strlcpy.h b/openbsd-compat/strlcpy.h
index dafa44af..3b137670 100644
--- a/openbsd-compat/strlcpy.h
+++ b/openbsd-compat/strlcpy.h
@@ -1,3 +1,5 @@
+/* $Id: strlcpy.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_STRLCPY_H
#define _BSD_STRLCPY_H
diff --git a/openbsd-compat/strmode.h b/openbsd-compat/strmode.h
index 773d6bdc..cbb2644e 100644
--- a/openbsd-compat/strmode.h
+++ b/openbsd-compat/strmode.h
@@ -1,3 +1,5 @@
+/* $Id: strmode.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef HAVE_STRMODE
void strmode( register mode_t mode, register char *p);
diff --git a/openbsd-compat/strsep.h b/openbsd-compat/strsep.h
index d5ba6e0f..6ed810ac 100644
--- a/openbsd-compat/strsep.h
+++ b/openbsd-compat/strsep.h
@@ -1,3 +1,5 @@
+/* $Id: strsep.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_STRSEP_H
#define _BSD_STRSEP_H
diff --git a/openbsd-compat/strtok.h b/openbsd-compat/strtok.h
index 5a3a5695..25db16ac 100644
--- a/openbsd-compat/strtok.h
+++ b/openbsd-compat/strtok.h
@@ -1,3 +1,5 @@
+/* $Id: strtok.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
+
#ifndef _BSD_STRTOK_H
#define _BSD_STRTOK_H
diff --git a/openbsd-compat/vis.h b/openbsd-compat/vis.h
index 52e867b9..677fe959 100644
--- a/openbsd-compat/vis.h
+++ b/openbsd-compat/vis.h
@@ -1,3 +1,5 @@
+/* $Id: vis.h,v 1.2 2001/02/09 01:55:37 djm Exp $ */
+
#ifndef _BSD_VIS_H
#define _BSD_VIS_H