summaryrefslogtreecommitdiffstats
path: root/servconf.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2024-06-11 02:36:20 +0200
committerDamien Miller <djm@mindrot.org>2024-06-11 03:26:50 +0200
commita59634c7adb9ae988748d99963dfafb3070d8d41 (patch)
tree56785a37c9db6888f141294cabbb71f6bb60b266 /servconf.c
parentupstream: avoid shadowing issues which some compilers won't accept (diff)
downloadopenssh-a59634c7adb9ae988748d99963dfafb3070d8d41.tar.xz
openssh-a59634c7adb9ae988748d99963dfafb3070d8d41.zip
upstream: correct error message
OpenBSD-Commit-ID: 581f60f73099083392887206860229ab104620ed
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/servconf.c b/servconf.c
index 4598ee373..8fe56939c 100644
--- a/servconf.c
+++ b/servconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: servconf.c,v 1.409 2024/06/06 20:25:48 djm Exp $ */
+/* $OpenBSD: servconf.c,v 1.410 2024/06/11 00:36:20 djm Exp $ */
/*
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
* All rights reserved
@@ -1981,7 +1981,7 @@ process_server_config_line_depth(ServerOptions *options, char *line,
charptr = &options->per_source_penalty_exempt;
arg = argv_next(&ac, &av);
if (!arg || *arg == '\0')
- fatal("%s line %d: missing file name.",
+ fatal("%s line %d: missing argument.",
filename, linenum);
if (addr_match_list(NULL, arg) != 0) {
fatal("%s line %d: keyword %s "