summaryrefslogtreecommitdiffstats
path: root/avahi-common/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'avahi-common/util.c')
-rw-r--r--avahi-common/util.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/avahi-common/util.c b/avahi-common/util.c
index c9a3143..8be7b88 100644
--- a/avahi-common/util.c
+++ b/avahi-common/util.c
@@ -84,13 +84,12 @@ gchar *avahi_normalize_name(const gchar *s) {
unescape_uneeded(s, tmp, sizeof(tmp));
- if ((l = strlen(tmp)) == 0)
- return g_strdup(".");
+ l = strlen(tmp);
- if (tmp[l-1] == '.')
- return g_strdup(tmp);
+ while (l > 0 && tmp[l-1] == '.')
+ tmp[--l] = 0;
- return g_strdup_printf("%s.", tmp);
+ return g_strdup(tmp);
}
gint avahi_timeval_compare(const GTimeVal *a, const GTimeVal *b) {