X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fplugins%2Ftext%2Fdetails%2Fdetails.c;h=9c45e39e4bacbaaf95ed0fc87b84ee3294b29267;hb=cc413248eefb5938459338ea1c543d0e03a339fc;hp=582230f0fb3dde3a4083880ed2c9952d70554747;hpb=54d785facc63ded43f23e60b8acb46250d82cfbe;p=babeltrace.git diff --git a/src/plugins/text/details/details.c b/src/plugins/text/details/details.c index 582230f0..9c45e39e 100644 --- a/src/plugins/text/details/details.c +++ b/src/plugins/text/details/details.c @@ -50,6 +50,9 @@ const char * const color_param_name = "color"; static const char * const with_metadata_param_name = "with-metadata"; +static +const char * const with_data_param_name = "with-data"; + static const char * const with_time_param_name = "with-time"; @@ -305,6 +308,13 @@ int configure_details_comp(struct details_comp *details_comp, goto error; } + /* With data objects? */ + ret = configure_bool_opt(details_comp, params, with_data_param_name, + true, &details_comp->cfg.with_data); + if (ret) { + goto error; + } + /* Compact? */ ret = configure_bool_opt(details_comp, params, compact_param_name, false, &details_comp->cfg.compact);