]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream commit
authorderaadt@openbsd.org <deraadt@openbsd.org>
Sun, 26 Mar 2017 00:18:52 +0000 (00:18 +0000)
committerDamien Miller <djm@mindrot.org>
Tue, 4 Apr 2017 00:26:01 +0000 (10:26 +1000)
incorrect renditions of this quote bother me

Upstream-ID: 1662be3ebb7a71d543da088119c31d4d463a9e49

authfile.c

index 7411b68f6e42e2772769de48ba2f5a1b3ad35116..0869e5d0d87b51c9d3d177fb91e25848cb4bf66e 100644 (file)
@@ -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 ||