]> andersk Git - gssapi-openssh.git/blobdiff - openssh/buffer.c
The man2html from jbasney on pkilab2 works whereas the standard one doesn't.
[gssapi-openssh.git] / openssh / buffer.c
index e02e1e35c9947dce9937655cff72db2d00efa9a6..cb0b620703ccadf23ce5eb480c6fdeb6542c018d 100644 (file)
@@ -127,7 +127,7 @@ restart:
 
        /* Increase the size of the buffer and retry. */
        newlen = roundup(buffer->alloc + len, BUFFER_ALLOCSZ);
-       if (newlen > BUFFER_MAX_LEN)
+       if (newlen > BUFFER_MAX_LEN_HPN)
                fatal("buffer_append_space: alloc %u not supported",
                    newlen);
        buffer->buf = xrealloc(buffer->buf, 1, newlen);
This page took 0.091668 seconds and 4 git commands to generate.