projects
/
lttng-tools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
684d34d
)
Fix wrong logical operator
author
David Goulet
<david.goulet@polymtl.ca>
Mon, 19 Sep 2011 20:44:35 +0000
(16:44 -0400)
committer
David Goulet
<david.goulet@polymtl.ca>
Mon, 19 Sep 2011 20:45:55 +0000
(16:45 -0400)
Signed-off-by: David Goulet <david.goulet@polymtl.ca>
liblttngctl/lttngctl.c
patch
|
blob
|
blame
|
history
diff --git
a/liblttngctl/lttngctl.c
b/liblttngctl/lttngctl.c
index 26b721e9928e469dd57e6ba09a696542c87fd799..bec1dbb8503c60da423e2f2f7f44161382b69e27 100644
(file)
--- a/
liblttngctl/lttngctl.c
+++ b/
liblttngctl/lttngctl.c
@@
-506,7
+506,7
@@
int lttng_enable_event(struct lttng_handle *handle,
copy_lttng_domain(&lsm.domain, &handle->domain);
- if (ev
||
ev->name[0] != '\0') {
+ if (ev
&&
ev->name[0] != '\0') {
lsm.cmd_type = LTTNG_ENABLE_EVENT;
memcpy(&lsm.u.enable.event, ev, sizeof(lsm.u.enable.event));
} else {
This page took
0.026443 seconds
and
4
git commands to generate.