summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2005-05-26 12:13:42 +1000
committerDamien Miller <djm@mindrot.org>2005-05-26 12:13:42 +1000
commit459735a0c60607ecf07c3e5d6aa0c599cab8bd3b (patch)
tree9c9a087e4766360e9bbc440fc80c790f407c24f7
parent06b75ad56b29cb102b7289e3935b95435545e695 (diff)
- djm@cvs.openbsd.org 2005/05/19 02:42:26
[includes.h] fix cast, from grunk AT pestilenz.org
-rw-r--r--ChangeLog5
-rw-r--r--includes.h4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 390ce1ab9..40b28d2d9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -62,6 +62,9 @@
62 - djm@cvs.openbsd.org 2005/05/19 02:40:52 62 - djm@cvs.openbsd.org 2005/05/19 02:40:52
63 [sshd_config] 63 [sshd_config]
64 whitespace nit, from grunk AT pestilenz.org 64 whitespace nit, from grunk AT pestilenz.org
65 - djm@cvs.openbsd.org 2005/05/19 02:42:26
66 [includes.h]
67 fix cast, from grunk AT pestilenz.org
65 68
6620050524 6920050524
67 - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec] 70 - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
@@ -2561,4 +2564,4 @@
2561 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 2564 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
2562 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 2565 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
2563 2566
2564$Id: ChangeLog,v 1.3779 2005/05/26 02:12:37 djm Exp $ 2567$Id: ChangeLog,v 1.3780 2005/05/26 02:13:42 djm Exp $
diff --git a/includes.h b/includes.h
index 3d3aa3b21..1625f8e30 100644
--- a/includes.h
+++ b/includes.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: includes.h,v 1.18 2004/06/13 15:03:02 djm Exp $ */ 1/* $OpenBSD: includes.h,v 1.19 2005/05/19 02:42:26 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -17,7 +17,7 @@
17#define INCLUDES_H 17#define INCLUDES_H
18 18
19#define RCSID(msg) \ 19#define RCSID(msg) \
20static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg } 20static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
21 21
22#include "config.h" 22#include "config.h"
23 23