diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2024-06-11 00:36:21 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2024-06-11 00:36:21 +0000 |
commit | e5bb1b9ac5e3a752c8841be9805cabb3c4725873 (patch) | |
tree | 8dd8c821f63faa02bf67b767890d765422bb84f1 /usr.bin/ssh/servconf.c | |
parent | d08636de5fe57dd96b20bd570b88f4d07297be58 (diff) |
correct error message
Diffstat (limited to 'usr.bin/ssh/servconf.c')
-rw-r--r-- | usr.bin/ssh/servconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c index 89909819cba..2caa16039c3 100644 --- a/usr.bin/ssh/servconf.c +++ b/usr.bin/ssh/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 @@ -1924,7 +1924,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 " |