diff options
author | djm@openbsd.org <djm@openbsd.org> | 2018-11-09 03:57:58 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2018-11-16 03:51:12 +0100 |
commit | 960e7c672dc106f3b759c081de3edb4d1138b36e (patch) | |
tree | ebf53859dadf0c1fd1d1bbb7023c196197e026b4 /ssh-agent.c | |
parent | upstream: correct local variable name; from yawang AT microsoft.com (diff) | |
download | openssh-960e7c672dc106f3b759c081de3edb4d1138b36e.tar.xz openssh-960e7c672dc106f3b759c081de3edb4d1138b36e.zip |
upstream: typo in error message; caught by Debian lintian, via
Colin Watson
OpenBSD-Commit-ID: bff614c7bd1f4ca491a84e9b5999f848d0d66758
Diffstat (limited to 'ssh-agent.c')
-rw-r--r-- | ssh-agent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-agent.c b/ssh-agent.c index d8a8260f9..cb552462a 100644 --- a/ssh-agent.c +++ b/ssh-agent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-agent.c,v 1.231 2018/05/11 03:38:51 djm Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.232 2018/11/09 02:57:58 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1199,7 +1199,7 @@ main(int ac, char **av) */ #define SSH_AGENT_MIN_FDS (3+1+1+1+4) if (rlim.rlim_cur < SSH_AGENT_MIN_FDS) - fatal("%s: file descriptior rlimit %lld too low (minimum %u)", + fatal("%s: file descriptor rlimit %lld too low (minimum %u)", __progname, (long long)rlim.rlim_cur, SSH_AGENT_MIN_FDS); maxfds = rlim.rlim_cur - SSH_AGENT_MIN_FDS; |