diff options
author | Rob Landley <rob@landley.net> | 2013-07-18 18:20:03 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-07-18 18:20:03 -0500 |
commit | a817a02c00a06fbf2090259320968addb5f46e58 (patch) | |
tree | 626d9761e1346afc168f64cbfe4dfba9538c20ef /toys/pending/klogd.c | |
parent | 39af4ae3e61d352c3faa7d1b87e6ac6fdb69add1 (diff) | |
download | toybox-a817a02c00a06fbf2090259320968addb5f46e58.tar.gz |
Replace users of xexec(toys.optargs) with xexec_optargs(0) to avoid free/reuse bug during argument parsing.
Diffstat (limited to 'toys/pending/klogd.c')
-rw-r--r-- | toys/pending/klogd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/pending/klogd.c b/toys/pending/klogd.c index 2fa36820..403677c3 100644 --- a/toys/pending/klogd.c +++ b/toys/pending/klogd.c @@ -23,7 +23,7 @@ config KLOGD_SOURCE_RING_BUFFER #define FOR_klogd #include "toys.h" -#include <signal.h> + GLOBALS( long level; int fd; |