summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-03-05 06:09:31 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-03-05 06:09:31 +0000
commit069090128c58d4cb7de488f2dfb3895661c59724 (patch)
tree6f9df61b2a434b91a834c3b46a5ccabf8b0c7dcd
parent5de86cc73681bbbf6cb15e04c8c38ad1a03243d0 (diff)
- deraadt@cvs.openbsd.org 2001/02/28 05:34:28
[misc.c] pull in protos
-rw-r--r--ChangeLog5
-rw-r--r--misc.c5
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 3850ba316..e9f3a8d46 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -58,6 +58,9 @@
58 - markus@cvs.openbsd.org 2001/02/27 11:00:11 58 - markus@cvs.openbsd.org 2001/02/27 11:00:11
59 [compat.c] 59 [compat.c]
60 support SSH-2.0-2.1 ; from Christophe_Moret@hp.com 60 support SSH-2.0-2.1 ; from Christophe_Moret@hp.com
61 - deraadt@cvs.openbsd.org 2001/02/28 05:34:28
62 [misc.c]
63 pull in protos
61 64
6220010304 6520010304
63 - (bal) Remove make-ssh-known-hosts.1 since it's no longer valid. 66 - (bal) Remove make-ssh-known-hosts.1 since it's no longer valid.
@@ -4250,4 +4253,4 @@
4250 - Wrote replacements for strlcpy and mkdtemp 4253 - Wrote replacements for strlcpy and mkdtemp
4251 - Released 1.0pre1 4254 - Released 1.0pre1
4252 4255
4253$Id: ChangeLog,v 1.868 2001/03/05 06:08:19 mouring Exp $ 4256$Id: ChangeLog,v 1.869 2001/03/05 06:09:31 mouring Exp $
diff --git a/misc.c b/misc.c
index 4a1213a29..fdfd13ca6 100644
--- a/misc.c
+++ b/misc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: misc.c,v 1.2 2001/02/22 21:59:44 markus Exp $ */ 1/* $OpenBSD: misc.c,v 1.3 2001/02/28 05:34:28 deraadt Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -25,10 +25,11 @@
25 */ 25 */
26 26
27#include "includes.h" 27#include "includes.h"
28RCSID("$OpenBSD: misc.c,v 1.2 2001/02/22 21:59:44 markus Exp $"); 28RCSID("$OpenBSD: misc.c,v 1.3 2001/02/28 05:34:28 deraadt Exp $");
29 29
30#include "misc.h" 30#include "misc.h"
31#include "log.h" 31#include "log.h"
32#include "xmalloc.h"
32 33
33char * 34char *
34chop(char *s) 35chop(char *s)