summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortedu <>2014-10-30 16:08:31 +0000
committertedu <>2014-10-30 16:08:31 +0000
commit53170831229038b6351a0c8139538b40020a05d5 (patch)
treec96b989b6152a9ef3c95870b8c073d790b0f5596 /src
parent56e63b7a9edf56693944d3b05ae76e1d2be27991 (diff)
downloadopenbsd-53170831229038b6351a0c8139538b40020a05d5.tar.gz
openbsd-53170831229038b6351a0c8139538b40020a05d5.tar.bz2
openbsd-53170831229038b6351a0c8139538b40020a05d5.zip
my mistake. we already did increase buffers to 16k; increasing to 64k
would be the next stage of embiggening. restore 16k.
Diffstat (limited to 'src')
-rw-r--r--src/usr.bin/nc/netcat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/nc/netcat.c b/src/usr.bin/nc/netcat.c
index a8e90186e9..7a523ccaba 100644
--- a/src/usr.bin/nc/netcat.c
+++ b/src/usr.bin/nc/netcat.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: netcat.c,v 1.125 2014/10/30 16:06:07 tedu Exp $ */ 1/* $OpenBSD: netcat.c,v 1.126 2014/10/30 16:08:31 tedu Exp $ */
2/* 2/*
3 * Copyright (c) 2001 Eric Jackson <ericj@monkey.org> 3 * Copyright (c) 2001 Eric Jackson <ericj@monkey.org>
4 * 4 *
@@ -68,7 +68,7 @@
68#define POLL_NETOUT 1 68#define POLL_NETOUT 1
69#define POLL_NETIN 2 69#define POLL_NETIN 2
70#define POLL_STDOUT 3 70#define POLL_STDOUT 3
71#define BUFSIZE 2048 71#define BUFSIZE 16384
72 72
73/* Command Line Options */ 73/* Command Line Options */
74int dflag; /* detached, no stdin */ 74int dflag; /* detached, no stdin */