- djm@cvs.openbsd.org 2005/05/19 02:42:26
[includes.h] fix cast, from grunk AT pestilenz.org
This commit is contained in:
parent
06b75ad56b
commit
459735a0c6
|
@ -62,6 +62,9 @@
|
||||||
- djm@cvs.openbsd.org 2005/05/19 02:40:52
|
- djm@cvs.openbsd.org 2005/05/19 02:40:52
|
||||||
[sshd_config]
|
[sshd_config]
|
||||||
whitespace nit, from grunk AT pestilenz.org
|
whitespace nit, from grunk AT pestilenz.org
|
||||||
|
- djm@cvs.openbsd.org 2005/05/19 02:42:26
|
||||||
|
[includes.h]
|
||||||
|
fix cast, from grunk AT pestilenz.org
|
||||||
|
|
||||||
20050524
|
20050524
|
||||||
- (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
|
- (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
|
||||||
|
@ -2561,4 +2564,4 @@
|
||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.3779 2005/05/26 02:12:37 djm Exp $
|
$Id: ChangeLog,v 1.3780 2005/05/26 02:13:42 djm Exp $
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: includes.h,v 1.18 2004/06/13 15:03:02 djm Exp $ */
|
/* $OpenBSD: includes.h,v 1.19 2005/05/19 02:42:26 djm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
#define INCLUDES_H
|
#define INCLUDES_H
|
||||||
|
|
||||||
#define RCSID(msg) \
|
#define RCSID(msg) \
|
||||||
static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
|
static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue