summaryrefslogtreecommitdiffstats
path: root/src/dso.c
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2008-06-25 00:28:53 +0300
committerLennart Poettering <lennart@poettering.net>2008-06-24 23:34:46 +0200
commit0ec4a7c40d36b9c25f3d2e3f82e2323c98077e55 (patch)
tree439b550d0ba88fc459d092579897858518a14830 /src/dso.c
parent7d7f8d0f091ec6ff6925eb6ebf5bf79293caa812 (diff)
Replace streq with ca_streq
Signed-off-by: Marc-André Lureau <marcandre.lureau@gmail.com> Signed-off-by: Lennart Poettering <lennart@poettering.net>
Diffstat (limited to 'src/dso.c')
-rw-r--r--src/dso.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dso.c b/src/dso.c
index 31db543..02eb672 100644
--- a/src/dso.c
+++ b/src/dso.c
@@ -106,7 +106,7 @@ static int lt_error_from_string(const char *t) {
const struct lt_error_code *c;
for (c = lt_error_codes; c->text; c++)
- if (streq(t, c->text))
+ if (ca_streq(t, c->text))
return c->code;
return -1;