diff options
author | Damien Miller <djm@mindrot.org> | 2006-08-18 16:46:43 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-08-18 16:46:43 +0200 |
commit | 3d2d6e90e4c6f46347b7212401198babe49f2c50 (patch) | |
tree | 4725e8c03825651f1c2eb9b77742776d06248669 /gss-genr.c | |
parent | - djm@cvs.openbsd.org 2006/08/18 13:54:54 (diff) | |
download | openssh-3d2d6e90e4c6f46347b7212401198babe49f2c50.tar.xz openssh-3d2d6e90e4c6f46347b7212401198babe49f2c50.zip |
- djm@cvs.openbsd.org 2006/08/18 14:40:34
[gss-genr.c ssh-gss.h]
constify host argument to match the rest of the GSSAPI functions and
unbreak compilation with -Werror
Diffstat (limited to 'gss-genr.c')
-rw-r--r-- | gss-genr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gss-genr.c b/gss-genr.c index 1bb67e84f..2ea2077c6 100644 --- a/gss-genr.c +++ b/gss-genr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gss-genr.c,v 1.14 2006/08/18 13:54:54 djm Exp $ */ +/* $OpenBSD: gss-genr.c,v 1.15 2006/08/18 14:40:34 djm Exp $ */ /* * Copyright (c) 2001-2006 Simon Wilkinson. All rights reserved. @@ -292,7 +292,7 @@ ssh_gssapi_server_ctx(Gssctxt **ctx, gss_OID oid) } int -ssh_gssapi_check_mechanism(Gssctxt **ctx, gss_OID oid, char *host) +ssh_gssapi_check_mechanism(Gssctxt **ctx, gss_OID oid, const char *host) { gss_buffer_desc token = GSS_C_EMPTY_BUFFER; OM_uint32 major, minor; |