From: Jérémie Galarneau Date: Mon, 20 Aug 2018 20:37:46 +0000 (-0400) Subject: Typo fix in uri parsing error logging X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=84d66cbd6516fc60764f033623c5b5717f650c2a;ds=sidebyside Typo fix in uri parsing error logging Signed-off-by: Jérémie Galarneau --- diff --git a/src/common/uri.c b/src/common/uri.c index 380e75dd3..c6d76bf66 100644 --- a/src/common/uri.c +++ b/src/common/uri.c @@ -608,7 +608,7 @@ ssize_t uri_parse_str_urls(const char *ctrl_url, const char *data_url, if (ctrl_uris[0].dtype == LTTNG_DST_PATH && (data_url && *data_url != '\0')) { - ERR("Can not have a data URL when destination is file://"); + ERR("Cannot have a data URL when destination is file://"); goto error; }