diff options
author | Michael Biebl <mbiebl@gmail.com> | 2008-04-10 09:52:37 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-04-10 12:13:05 +0200 |
commit | cac432e7cb65ea4694a183823267cbcd67e97ad6 (patch) | |
tree | f76d23355df5d5138925444fa5b7f14b1d35c83d /plugins/imklog | |
parent | a6bc115d50519af6c171acacf9e41194a8dc82c5 (diff) | |
download | rsyslog-cac432e7cb65ea4694a183823267cbcd67e97ad6.tar.gz rsyslog-cac432e7cb65ea4694a183823267cbcd67e97ad6.tar.xz rsyslog-cac432e7cb65ea4694a183823267cbcd67e97ad6.zip |
Add missing include
bsd.c uses strchr, strlen and memmove, so include string.h
Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
Diffstat (limited to 'plugins/imklog')
-rw-r--r-- | plugins/imklog/bsd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/imklog/bsd.c b/plugins/imklog/bsd.c index c1595669..9989d5fb 100644 --- a/plugins/imklog/bsd.c +++ b/plugins/imklog/bsd.c @@ -71,6 +71,7 @@ #include <unistd.h> #include <fcntl.h> #include <errno.h> +#include <string.h> #include "rsyslog.h" #include "imklog.h" |