Commit 314ef986 314ef98678f1b4c2c39b3c6a13145659869751fb by Sergey Poznyakoff

(alias_expand): Return NULL if no suitable expansion was found.

1 parent 6658c767
......@@ -262,6 +262,6 @@ alias_expand(char *name)
list_t list;
if (!alias_lookup(name, &list))
return strdup (name);
return NULL;
return util_slist_to_string(list, ",");
}
......