36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
From 960e7c672dc106f3b759c081de3edb4d1138b36e Mon Sep 17 00:00:00 2001
|
|
From: "djm@openbsd.org" <djm@openbsd.org>
|
|
Date: Fri, 9 Nov 2018 02:57:58 +0000
|
|
Subject: [PATCH 107/294] upstream: typo in error message; caught by Debian
|
|
lintian, via
|
|
|
|
Colin Watson
|
|
|
|
OpenBSD-Commit-ID: bff614c7bd1f4ca491a84e9b5999f848d0d66758
|
|
---
|
|
ssh-agent.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/ssh-agent.c b/ssh-agent.c
|
|
index d8a8260..cb55246 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;
|
|
|
|
--
|
|
1.8.3.1
|
|
|