- stevesk@cvs.openbsd.org 2002/01/22 02:52:41
[servconf.c] typo in error message; from djast@cs.toronto.edu
This commit is contained in:
parent
73f1074272
commit
4fbf08a8f0
|
@ -223,6 +223,9 @@
|
||||||
[channels.c nchan.c]
|
[channels.c nchan.c]
|
||||||
cleanup channels faster if the are empty and we are in drain-state;
|
cleanup channels faster if the are empty and we are in drain-state;
|
||||||
ok deraadt@
|
ok deraadt@
|
||||||
|
- stevesk@cvs.openbsd.org 2002/01/22 02:52:41
|
||||||
|
[servconf.c]
|
||||||
|
typo in error message; from djast@cs.toronto.edu
|
||||||
|
|
||||||
20020121
|
20020121
|
||||||
- (djm) Rework ssh-rand-helper:
|
- (djm) Rework ssh-rand-helper:
|
||||||
|
@ -7370,4 +7373,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1785 2002/01/22 12:34:52 djm Exp $
|
$Id: ChangeLog,v 1.1786 2002/01/22 12:35:09 djm Exp $
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: servconf.c,v 1.97 2002/01/04 18:14:16 stevesk Exp $");
|
RCSID("$OpenBSD: servconf.c,v 1.98 2002/01/22 02:52:41 stevesk Exp $");
|
||||||
|
|
||||||
#if defined(KRB4) || defined(KRB5)
|
#if defined(KRB4) || defined(KRB5)
|
||||||
#include <krb.h>
|
#include <krb.h>
|
||||||
|
@ -429,7 +429,7 @@ process_server_config_line(ServerOptions *options, char *line,
|
||||||
return 0;
|
return 0;
|
||||||
if (options->listen_addrs != NULL)
|
if (options->listen_addrs != NULL)
|
||||||
fatal("%s line %d: ports must be specified before "
|
fatal("%s line %d: ports must be specified before "
|
||||||
"ListenAdress.", filename, linenum);
|
"ListenAddress.", filename, linenum);
|
||||||
if (options->num_ports >= MAX_PORTS)
|
if (options->num_ports >= MAX_PORTS)
|
||||||
fatal("%s line %d: too many ports.",
|
fatal("%s line %d: too many ports.",
|
||||||
filename, linenum);
|
filename, linenum);
|
||||||
|
|
Loading…
Reference in New Issue