[gss-serv.c monitor.c]
     small KNF
This commit is contained in:
Damien Miller 2006-03-15 11:20:03 +11:00
parent 3a4051e88b
commit 0b70b54abc
3 changed files with 11 additions and 7 deletions

View File

@ -34,6 +34,9 @@
- stevesk@cvs.openbsd.org 2006/02/08 12:32:49 - stevesk@cvs.openbsd.org 2006/02/08 12:32:49
[includes.h misc.c] [includes.h misc.c]
move #include <netinet/tcp.h> out of includes.h; ok markus@ move #include <netinet/tcp.h> out of includes.h; ok markus@
- stevesk@cvs.openbsd.org 2006/02/08 13:15:44
[gss-serv.c monitor.c]
small KNF
20060313 20060313
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong) - (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
@ -3935,4 +3938,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.4149 2006/03/15 00:19:42 djm Exp $ $Id: ChangeLog,v 1.4150 2006/03/15 00:20:03 djm Exp $

View File

@ -1,4 +1,4 @@
/* $OpenBSD: gss-serv.c,v 1.13 2005/10/13 22:24:31 stevesk Exp $ */ /* $OpenBSD: gss-serv.c,v 1.14 2006/02/08 13:15:44 stevesk Exp $ */
/* /*
* Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved. * Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved.
@ -234,7 +234,8 @@ ssh_gssapi_cleanup_creds(void)
{ {
if (gssapi_client.store.filename != NULL) { if (gssapi_client.store.filename != NULL) {
/* Unlink probably isn't sufficient */ /* Unlink probably isn't sufficient */
debug("removing gssapi cred file\"%s\"", gssapi_client.store.filename); debug("removing gssapi cred file\"%s\"",
gssapi_client.store.filename);
unlink(gssapi_client.store.filename); unlink(gssapi_client.store.filename);
} }
} }

View File

@ -25,7 +25,7 @@
*/ */
#include "includes.h" #include "includes.h"
RCSID("$OpenBSD: monitor.c,v 1.65 2006/02/08 12:15:27 stevesk Exp $"); RCSID("$OpenBSD: monitor.c,v 1.66 2006/02/08 13:15:44 stevesk Exp $");
#include <paths.h> #include <paths.h>