From 9ad5f651fec81c004d2075dcab49da831278a162 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Mon, 23 Jun 2008 17:49:15 +0200 Subject: [PATCH] client: use a_str() Signed-off-by: Julien Danjou --- client.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client.c b/client.c index b48577d6..c0df7a7e 100644 --- a/client.c +++ b/client.c @@ -79,7 +79,8 @@ client_loadprops(client_t * c, screen_t *screen) &prop)) return false; - if (strlen(prop) != tags->len + 2) { + if(a_strlen(prop) != tags->len + 2) + { /* ignore property if the tag count isn't matching */ p_delete(&prop); return false;