[ssh-keyscan.c]
     don't use "\n" in fatal()
This commit is contained in:
Ben Lindstrom 2001-12-06 16:45:10 +00:00
Родитель 4e366d5048
Коммит 28c603bf43
2 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -26,6 +26,9 @@
- stevesk@cvs.openbsd.org 2001/11/21 18:49:14 - stevesk@cvs.openbsd.org 2001/11/21 18:49:14
[ssh-keygen.1] [ssh-keygen.1]
more on passphrase construction; ok markus@ more on passphrase construction; ok markus@
- stevesk@cvs.openbsd.org 2001/11/22 05:27:29
[ssh-keyscan.c]
don't use "\n" in fatal()
20011126 20011126
- (tim) [contrib/cygwin/README, openbsd-compat/bsd-cygwin_util.c, - (tim) [contrib/cygwin/README, openbsd-compat/bsd-cygwin_util.c,
@ -6948,4 +6951,4 @@
- Wrote replacements for strlcpy and mkdtemp - Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1 - Released 1.0pre1
$Id: ChangeLog,v 1.1674 2001/12/06 16:43:21 mouring Exp $ $Id: ChangeLog,v 1.1675 2001/12/06 16:45:10 mouring Exp $

Просмотреть файл

@ -7,7 +7,7 @@
*/ */
#include "includes.h" #include "includes.h"
RCSID("$OpenBSD: ssh-keyscan.c,v 1.31 2001/11/16 12:46:13 markus Exp $"); RCSID("$OpenBSD: ssh-keyscan.c,v 1.32 2001/11/22 05:27:29 stevesk Exp $");
#if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H) #if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H)
#include <sys/queue.h> #include <sys/queue.h>
@ -744,7 +744,7 @@ main(int argc, char **argv)
get_keytypes |= KT_RSA; get_keytypes |= KT_RSA;
break; break;
case KEY_UNSPEC: case KEY_UNSPEC:
fatal("unknown key type %s\n", tname); fatal("unknown key type %s", tname);
} }
tname = strtok(NULL, ","); tname = strtok(NULL, ",");
} }