From ea66de8a0cf505237add3e7ae010b68b649e8b84 Mon Sep 17 00:00:00 2001 From: avsm Date: Tue, 15 Apr 2003 15:50:11 +0000 Subject: [PATCH] plug another bad boundary value; string size was 4069, used 4096 for the bound --- net/cftp/patches/patch-mkbind_c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 net/cftp/patches/patch-mkbind_c diff --git a/net/cftp/patches/patch-mkbind_c b/net/cftp/patches/patch-mkbind_c new file mode 100644 index 00000000000..94979ef9a46 --- /dev/null +++ b/net/cftp/patches/patch-mkbind_c @@ -0,0 +1,12 @@ +$OpenBSD: patch-mkbind_c,v 1.1 2003/04/15 15:50:11 avsm Exp $ +--- mkbind.c.orig Tue Apr 15 16:47:09 2003 ++++ mkbind.c Tue Apr 15 16:47:24 2003 +@@ -86,7 +86,7 @@ int + main(int argc, char **argv) + { + FILE *fin, *fout; +- char line[4069], *p, *tok, **args; ++ char line[4096], *p, *tok, **args; + char tmp[128]; + struct binding *b; + int i, j, off, argoff, len;