Fix: misc spelling errors
authorMichael Jeanson <mjeanson@ubuntu.com>
Fri, 4 Apr 2014 14:23:36 +0000 (10:23 -0400)
committerDavid Goulet <dgoulet@efficios.com>
Fri, 4 Apr 2014 14:25:54 +0000 (10:25 -0400)
Signed-off-by: Michael Jeanson <mjeanson@ubuntu.com>
doc/man/lttng.1
src/bin/lttng-sessiond/jul-thread.c
src/bin/lttng-sessiond/ust-app.c
src/bin/lttng-sessiond/ust-consumer.c

index e59a8706dd97bde7b6a9c28923feee4d66e67e6c..972f71c3ab592bc6ae9b25ea3affe66af3d761a2 100644 (file)
@@ -598,7 +598,7 @@ names match any of the items in LIST.
 Disable tracing channel
 
 Disabling a channel disables the tracing of all of the channel's events. A channel
-can be reenabled by calling \fBlttng enable-channel NAME\fP again.
+can be re-enabled by calling \fBlttng enable-channel NAME\fP again.
 
 If \fB\-s, \-\-session\fP is omitted, the session name is taken from the .lttngrc
 file.
index d8748f2a5aad5e3c246a0016af7bd72e0a43bde6..cc694df81066718a82ded69fc2baf36b683b726b 100644 (file)
@@ -142,8 +142,8 @@ static struct lttcomm_sock *init_tcp_socket(void)
 
        ret = sock->ops->bind(sock);
        if (ret < 0) {
-               WARN("An other session daemon is using this JUL port. JUL support "
-                               "will be deactivated not interfering with the tracing.");
+               WARN("Another session daemon is using this JUL port. JUL support "
+                               "will be deactivated to prevent interfering with the tracing.");
                goto error;
        }
 
index 7f27eae078a45abd28535db63760e3aaecc1cf64..e029b42d8f93827ac70da99203608abd80214e19 100644 (file)
@@ -2953,9 +2953,9 @@ int ust_app_version(struct ust_app *app)
        ret = ustctl_tracer_version(app->sock, &app->version);
        if (ret < 0) {
                if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
-                       ERR("UST app %d verson failed with ret %d", app->sock, ret);
+                       ERR("UST app %d version failed with ret %d", app->sock, ret);
                } else {
-                       DBG3("UST app %d verion failed. Application is dead", app->sock);
+                       DBG3("UST app %d version failed. Application is dead", app->sock);
                }
        }
 
index a8a11dcee41729f56da30f1f34e62b0a7fa3b4b2..4b52d599258ca301bbaede1587fa1c559b5c47e1 100644 (file)
@@ -308,7 +308,7 @@ int ust_consumer_get_channel(struct consumer_socket *socket,
                cds_list_add_tail(&stream->list, &ua_chan->streams.head);
                ua_chan->streams.count++;
 
-               DBG2("UST app stream %d received succesfully", ua_chan->streams.count);
+               DBG2("UST app stream %d received successfully", ua_chan->streams.count);
        }
 
        /* This MUST match or else we have a synchronization problem. */
This page took 0.031032 seconds and 5 git commands to generate.