From: Lennart Poettering Date: Mon, 16 Jun 2014 15:01:26 +0000 (+0200) Subject: unit-name: fix detection of unit templates/instances X-Git-Tag: v215~398 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=6ef9eeed61a291cc42b7d911f5cf5a4deca742a3 unit-name: fix detection of unit templates/instances We need to check for the last dot, not the first one in a unit name, for the suffix. Correct that. --- diff --git a/src/shared/unit-name.c b/src/shared/unit-name.c index 6c167b433..d0e71f240 100644 --- a/src/shared/unit-name.c +++ b/src/shared/unit-name.c @@ -332,7 +332,7 @@ char *unit_name_path_unescape(const char *f) { } bool unit_name_is_template(const char *n) { - const char *p; + const char *p, *e; assert(n); @@ -340,11 +340,15 @@ bool unit_name_is_template(const char *n) { if (!p) return false; - return p[1] == '.'; + e = strrchr(p+1, '.'); + if (!e) + return false; + + return e == p + 1; } bool unit_name_is_instance(const char *n) { - const char *p; + const char *p, *e; assert(n); @@ -352,7 +356,11 @@ bool unit_name_is_instance(const char *n) { if (!p) return false; - return p[1] != '.'; + e = strrchr(p+1, '.'); + if (!e) + return false; + + return e > p + 1; } char *unit_name_replace_instance(const char *f, const char *i) {