summaryrefslogtreecommitdiff
path: root/authfile.c
diff options
context:
space:
mode:
authorderaadt@openbsd.org <deraadt@openbsd.org>2017-03-26 00:18:52 +0000
committerDamien Miller <djm@mindrot.org>2017-04-04 10:26:01 +1000
commitef47843af0a904a21c920e619c5aec97b65dd9ac (patch)
treebb55812a93df04b37d1fe378d72ea39b0e73af50 /authfile.c
parentd9048861bea842c4eba9c2dbbf97064cc2a5ef02 (diff)
downloadopenssh-git-ef47843af0a904a21c920e619c5aec97b65dd9ac.tar.gz
upstream commit
incorrect renditions of this quote bother me Upstream-ID: 1662be3ebb7a71d543da088119c31d4d463a9e49
Diffstat (limited to 'authfile.c')
-rw-r--r--authfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/authfile.c b/authfile.c
index 7411b68f..0869e5d0 100644
--- a/authfile.c
+++ b/authfile.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: authfile.c,v 1.122 2016/11/25 23:24:45 djm Exp $ */
+/* $OpenBSD: authfile.c,v 1.123 2017/03/26 00:18:52 deraadt Exp $ */
/*
* Copyright (c) 2000, 2013 Markus Friedl. All rights reserved.
*
@@ -113,7 +113,7 @@ sshkey_load_file(int fd, struct sshbuf *blob)
* implicit realloc() in the sshbuf code.
*/
if ((st.st_mode & S_IFREG) == 0 || st.st_size <= 0) {
- st.st_size = 64*1024; /* 64k should be enough for anyone :) */
+ st.st_size = 64*1024; /* 64k ought to be enough for anybody. :) */
dontmax = 1;
}
if ((r = sshbuf_allocate(blob, st.st_size)) != 0 ||