Mirror of the lttng-dev mailing list
 help / color / mirror / Atom feed
* [lttng-dev] [PATCH lttng-tools] Typo: catched -> caught
@ 2016-04-19 20:34 Michael Jeanson
  2016-04-20 20:11 ` Jérémie Galarneau
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Jeanson @ 2016-04-19 20:34 UTC (permalink / raw)


Signed-off-by: Michael Jeanson <mjeanson at efficios.com>
---
 src/bin/lttng-consumerd/lttng-consumerd.c | 2 +-
 src/common/consumer/consumer.c            | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/bin/lttng-consumerd/lttng-consumerd.c b/src/bin/lttng-consumerd/lttng-consumerd.c
index 87ffb05..00660fc 100644
--- a/src/bin/lttng-consumerd/lttng-consumerd.c
+++ b/src/bin/lttng-consumerd/lttng-consumerd.c
@@ -101,7 +101,7 @@ static void sighandler(int sig)
 
 	/*
 	 * Ignore SIGPIPE because it should not stop the consumer whenever a
-	 * SIGPIPE is catched through a FD operation.
+	 * SIGPIPE is caught through a FD operation.
 	 */
 	if (sig == SIGPIPE) {
 		return;
diff --git a/src/common/consumer/consumer.c b/src/common/consumer/consumer.c
index d57271c..cb05a1e 100644
--- a/src/common/consumer/consumer.c
+++ b/src/common/consumer/consumer.c
@@ -2261,10 +2261,10 @@ restart:
 		DBG("Metadata poll return from wait with %d fd(s)",
 				LTTNG_POLL_GETNB(&events));
 		health_poll_exit();
-		DBG("Metadata event catched in thread");
+		DBG("Metadata event caught in thread");
 		if (ret < 0) {
 			if (errno == EINTR) {
-				ERR("Poll EINTR catched");
+				ERR("Poll EINTR caught");
 				goto restart;
 			}
 			if (LTTNG_POLL_GETNB(&events) == 0) {
@@ -2844,10 +2844,10 @@ restart:
 		DBG("Channel poll return from wait with %d fd(s)",
 				LTTNG_POLL_GETNB(&events));
 		health_poll_exit();
-		DBG("Channel event catched in thread");
+		DBG("Channel event caught in thread");
 		if (ret < 0) {
 			if (errno == EINTR) {
-				ERR("Poll EINTR catched");
+				ERR("Poll EINTR caught");
 				goto restart;
 			}
 			if (LTTNG_POLL_GETNB(&events) == 0) {
-- 
2.7.4



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [lttng-dev] [PATCH lttng-tools] Typo: catched -> caught
  2016-04-19 20:34 [lttng-dev] [PATCH lttng-tools] Typo: catched -> caught Michael Jeanson
@ 2016-04-20 20:11 ` Jérémie Galarneau
  0 siblings, 0 replies; 2+ messages in thread
From: Jérémie Galarneau @ 2016-04-20 20:11 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2537 bytes --]

Merged in master, stable-2.8 and stable-2.7. Thanks!

Jérémie

On Tue, Apr 19, 2016 at 4:34 PM, Michael Jeanson <mjeanson at efficios.com> wrote:
> Signed-off-by: Michael Jeanson <mjeanson at efficios.com>
> ---
>  src/bin/lttng-consumerd/lttng-consumerd.c | 2 +-
>  src/common/consumer/consumer.c            | 8 ++++----
>  2 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/src/bin/lttng-consumerd/lttng-consumerd.c b/src/bin/lttng-consumerd/lttng-consumerd.c
> index 87ffb05..00660fc 100644
> --- a/src/bin/lttng-consumerd/lttng-consumerd.c
> +++ b/src/bin/lttng-consumerd/lttng-consumerd.c
> @@ -101,7 +101,7 @@ static void sighandler(int sig)
>
>         /*
>          * Ignore SIGPIPE because it should not stop the consumer whenever a
> -        * SIGPIPE is catched through a FD operation.
> +        * SIGPIPE is caught through a FD operation.
>          */
>         if (sig == SIGPIPE) {
>                 return;
> diff --git a/src/common/consumer/consumer.c b/src/common/consumer/consumer.c
> index d57271c..cb05a1e 100644
> --- a/src/common/consumer/consumer.c
> +++ b/src/common/consumer/consumer.c
> @@ -2261,10 +2261,10 @@ restart:
>                 DBG("Metadata poll return from wait with %d fd(s)",
>                                 LTTNG_POLL_GETNB(&events));
>                 health_poll_exit();
> -               DBG("Metadata event catched in thread");
> +               DBG("Metadata event caught in thread");
>                 if (ret < 0) {
>                         if (errno == EINTR) {
> -                               ERR("Poll EINTR catched");
> +                               ERR("Poll EINTR caught");
>                                 goto restart;
>                         }
>                         if (LTTNG_POLL_GETNB(&events) == 0) {
> @@ -2844,10 +2844,10 @@ restart:
>                 DBG("Channel poll return from wait with %d fd(s)",
>                                 LTTNG_POLL_GETNB(&events));
>                 health_poll_exit();
> -               DBG("Channel event catched in thread");
> +               DBG("Channel event caught in thread");
>                 if (ret < 0) {
>                         if (errno == EINTR) {
> -                               ERR("Poll EINTR catched");
> +                               ERR("Poll EINTR caught");
>                                 goto restart;
>                         }
>                         if (LTTNG_POLL_GETNB(&events) == 0) {
> --
> 2.7.4
>



-- 
Jérémie Galarneau
EfficiOS Inc.
http://www.efficios.com


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-04-20 20:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-19 20:34 [lttng-dev] [PATCH lttng-tools] Typo: catched -> caught Michael Jeanson
2016-04-20 20:11 ` Jérémie Galarneau

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox