Skip to content

Commit

Permalink
Fix one more problem related to save settings
Browse files Browse the repository at this point in the history
  • Loading branch information
lazio579 committed Mar 25, 2019
1 parent d03d54b commit 3dda708
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chassis-options-utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -1240,7 +1240,7 @@ show_enable_tcp_stream(gpointer param) {
return g_strdup_printf("%s", srv->is_tcp_stream_enabled ? "true" : "false");
}
if (CAN_SAVE_OPTS_PROPERTY(opt_type)) {
return srv->is_tcp_stream_enabled ? g_strdup("true") : NULL;
return srv->is_tcp_stream_enabled ? g_strdup("true") : g_strdup("false");
}
return NULL;
}
Expand Down

0 comments on commit 3dda708

Please sign in to comment.