[systemd-commits] src/unit-name.c
Lennart Poettering
lennart at kemper.freedesktop.org
Tue Oct 5 12:23:45 PDT 2010
src/unit-name.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit df37291a5198818e5bb1d11c34ba134aa3d79d96
Author: Mike Kelly <pioto at pioto.org>
Date: Fri Oct 1 19:58:07 2010 -0400
unit-name: fix unit name escaping
we want to do a bitwise shift, not a greater-than comparision
diff --git a/src/unit-name.c b/src/unit-name.c
index 2e2948a..868d13e 100644
--- a/src/unit-name.c
+++ b/src/unit-name.c
@@ -211,7 +211,7 @@ static char* do_escape(const char *f, char *t) {
else if (*f == '-' || *f == '\\' || !strchr(VALID_CHARS, *f)) {
*(t++) = '\\';
*(t++) = 'x';
- *(t++) = hexchar(*f > 4);
+ *(t++) = hexchar(*f >> 4);
*(t++) = hexchar(*f);
} else
*(t++) = *f;
More information about the systemd-commits
mailing list