[gss-serv.c]
     whitspace KNF
This commit is contained in:
Damien Miller 2003-09-02 22:56:42 +10:00
parent a0c4ad21b6
commit 134350c20c
2 changed files with 26 additions and 23 deletions

View File

@ -29,6 +29,9 @@
- markus@cvs.openbsd.org 2003/08/31 13:30:18
[gss-serv.c]
correct string termination in parse_ename(); sxw@inf.ed.ac.uk
- markus@cvs.openbsd.org 2003/08/31 13:31:57
[gss-serv.c]
whitspace KNF
20030829
- (bal) openbsd-compat/ clean up. Considate headers, add in Id on our
@ -944,4 +947,4 @@
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
$Id: ChangeLog,v 1.2927 2003/09/02 12:56:18 djm Exp $
$Id: ChangeLog,v 1.2928 2003/09/02 12:56:42 djm Exp $

View File

@ -1,4 +1,4 @@
/* $OpenBSD: gss-serv.c,v 1.2 2003/08/31 13:30:18 markus Exp $ */
/* $OpenBSD: gss-serv.c,v 1.3 2003/08/31 13:31:57 markus Exp $ */
/*
* Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved.
@ -176,7 +176,7 @@ ssh_gssapi_parse_ename(Gssctxt *ctx, gss_buffer_t ename, gss_buffer_t name)
offset += 4;
if (ename->length < offset+name->length)
return GSS_S_FAILURE;
return GSS_S_FAILURE;
name->value = xmalloc(name->length+1);
memcpy(name->value,tok+offset,name->length);
@ -211,8 +211,8 @@ ssh_gssapi_getclient(Gssctxt *ctx, ssh_gssapi_client *client)
if ((ctx->major = gss_display_name(&ctx->minor, ctx->client,
&client->displayname, NULL))) {
ssh_gssapi_error(ctx);
return (ctx->major);
ssh_gssapi_error(ctx);
return (ctx->major);
}
if ((ctx->major = gss_export_name(&ctx->minor, ctx->client,