Skip to content

Commit 85b3f91

Browse files
committed
in_tail: fixups for rebasing onto master
Signed-off-by: Nigel Stewart <[email protected]>
1 parent f5d0371 commit 85b3f91

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

plugins/in_syslog/syslog_conf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ struct flb_syslog *syslog_conf_create(struct flb_input_instance *ins,
115115
}
116116

117117
/* Config: Text encoding other than UTF-8 */
118-
tmp = flb_input_get_property("encoding", i_ins);
118+
tmp = flb_input_get_property("encoding", ins);
119119
if (tmp) {
120120
ctx->encoding = flb_get_encoder(tmp);
121121
if (!ctx->encoding) {

plugins/in_tail/tail_config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ struct flb_tail_config *flb_tail_config_create(struct flb_input_instance *ins,
160160
}
161161

162162
/* Config: Text encoding other than UTF-8 */
163-
tmp = flb_input_get_property("encoding", i_ins);
163+
tmp = flb_input_get_property("encoding", ins);
164164
if (tmp) {
165165
ctx->encoding = flb_get_encoder(tmp);
166166
if (!ctx->encoding) {

src/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,14 @@ if(FLB_HTTP_CLIENT_DEBUG)
108108
set(src
109109
${src}
110110
"flb_http_client_debug.c"
111+
)
111112
endif()
112113

113114
if(FLB_UTF8_ENCODER)
114115
set(src
115116
${src}
116117
"flb_encoder.c"
118+
)
117119
endif()
118120

119121
if(FLB_LUAJIT)

0 commit comments

Comments
 (0)