=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/canohost.c,v retrieving revision 1.49.2.1 retrieving revision 1.50 diff -u -r1.49.2.1 -r1.50 --- src/usr.bin/ssh/canohost.c 2006/09/30 04:06:50 1.49.2.1 +++ src/usr.bin/ssh/canohost.c 2006/03/14 00:15:39 1.50 @@ -1,4 +1,3 @@ -/* $OpenBSD: canohost.c,v 1.49.2.1 2006/09/30 04:06:50 brad Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -12,21 +11,13 @@ * called by a name other than "ssh" or "Secure Shell". */ -#include -#include +#include "includes.h" +RCSID("$OpenBSD: canohost.c,v 1.50 2006/03/14 00:15:39 djm Exp $"); -#include - #include -#include -#include -#include -#include -#include -#include -#include "xmalloc.h" #include "packet.h" +#include "xmalloc.h" #include "log.h" #include "canohost.h" @@ -93,7 +84,7 @@ */ for (i = 0; name[i]; i++) if (isupper(name[i])) - name[i] = (char)tolower(name[i]); + name[i] = tolower(name[i]); /* * Map it back to an IP address and check that the given * address actually is an address of this host. This is