diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-04-11 05:24:58 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-04-11 05:24:58 +0200 |
commit | 88d3cfdb75b6da83f3552daceed803f0a29d0c9c (patch) | |
tree | 859830be05d155b3f4d629a03aa477cfde2c7262 | |
parent | 532e961f7ec04d9490e11c16a9efac8aed4f0585 (diff) | |
download | busybox-w32-88d3cfdb75b6da83f3552daceed803f0a29d0c9c.tar.gz busybox-w32-88d3cfdb75b6da83f3552daceed803f0a29d0c9c.tar.bz2 busybox-w32-88d3cfdb75b6da83f3552daceed803f0a29d0c9c.zip |
add forgotten #include
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/tftp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/networking/tftp.c b/networking/tftp.c index 9080c442f..648441016 100644 --- a/networking/tftp.c +++ b/networking/tftp.c | |||
@@ -53,6 +53,7 @@ | |||
53 | //usage: "\n -l Log to syslog (inetd mode requires this)" | 53 | //usage: "\n -l Log to syslog (inetd mode requires this)" |
54 | 54 | ||
55 | #include "libbb.h" | 55 | #include "libbb.h" |
56 | #include <syslog.h> | ||
56 | 57 | ||
57 | #if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT | 58 | #if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT |
58 | 59 | ||