summaryrefslogtreecommitdiffstats
path: root/sbin/ipfw
diff options
context:
space:
mode:
authorae <ae@FreeBSD.org>2011-06-06 10:52:26 +0000
committerae <ae@FreeBSD.org>2011-06-06 10:52:26 +0000
commit32b65a86d0b2b966afb97a6694f92ff4f8d4d83f (patch)
tree7300a39da19a48061e8bdf9b16ff0cfb559e9443 /sbin/ipfw
parent5eef59f051bb91af438e00594d53a03903eaa8b4 (diff)
downloadFreeBSD-src-32b65a86d0b2b966afb97a6694f92ff4f8d4d83f.zip
FreeBSD-src-32b65a86d0b2b966afb97a6694f92ff4f8d4d83f.tar.gz
Increase buffer size for the command line.
PR: bin/125370 Submitted by: sem MFC after: 2 weeks
Diffstat (limited to 'sbin/ipfw')
-rw-r--r--sbin/ipfw/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ipfw/main.c b/sbin/ipfw/main.c
index fb3f3fb..be6c093f 100644
--- a/sbin/ipfw/main.c
+++ b/sbin/ipfw/main.c
@@ -444,7 +444,7 @@ static void
ipfw_readfile(int ac, char *av[])
{
#define MAX_ARGS 32
- char buf[BUFSIZ];
+ char buf[4096];
char *progname = av[0]; /* original program name */
const char *cmd = NULL; /* preprocessor name, if any */
const char *filename = av[ac-1]; /* file to read */
@@ -552,7 +552,7 @@ ipfw_readfile(int ac, char *av[])
}
}
- while (fgets(buf, BUFSIZ, f)) { /* read commands */
+ while (fgets(buf, sizeof(buf), f)) { /* read commands */
char linename[20];
char *args[2];
OpenPOWER on IntegriCloud