diff options
author | Darren Tucker <dtucker@zip.com.au> | 2010-01-08 08:55:58 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2010-01-08 08:55:58 +0100 |
commit | 75456e8ab2df99061a6aa69bcc914d05c2f4f98c (patch) | |
tree | e8ef591c547d797acb5e32638589ae04395769cb /readconf.c | |
parent | - djm@cvs.openbsd.org 2009/12/20 23:20:40 (diff) | |
download | openssh-75456e8ab2df99061a6aa69bcc914d05c2f4f98c.tar.xz openssh-75456e8ab2df99061a6aa69bcc914d05c2f4f98c.zip |
- stevesk@cvs.openbsd.org 2009/12/25 19:40:21
[readconf.c servconf.c misc.h ssh-keyscan.c misc.c]
validate routing domain is in range 0-RT_TABLEID_MAX.
'Looks right' deraadt@
Diffstat (limited to 'readconf.c')
-rw-r--r-- | readconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/readconf.c b/readconf.c index 6b2e3b21d..2f1b0cd3b 100644 --- a/readconf.c +++ b/readconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.c,v 1.179 2009/10/28 16:38:18 reyk Exp $ */ +/* $OpenBSD: readconf.c,v 1.180 2009/12/25 19:40:21 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -925,7 +925,7 @@ parse_int: if (!arg || *arg == '\0') fatal("%.200s line %d: Missing argument.", filename, linenum); - value = a2port(arg); + value = a2rdomain(arg); if (value == -1) fatal("%.200s line %d: Bad rdomain.", filename, linenum); |