diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-01-27 19:44:52 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-01-29 19:01:41 -0500 |
commit | d848b9cbfa0ba72381363accce481600169df2eb (patch) | |
tree | 184f2aab672e083fd5112947ac6ccd89de257ca2 /src/core | |
parent | d9e5e694ea7841045975426163c96fc9f71e6f7d (diff) |
Move generic specifier functions to shared
No functional change. This makes it possible to use them in install.c.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/unit-printf.c | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/src/core/unit-printf.c b/src/core/unit-printf.c index a58c96c238..3aa735e5b2 100644 --- a/src/core/unit-printf.c +++ b/src/core/unit-printf.c @@ -211,42 +211,6 @@ static char *specifier_user_shell(char specifier, void *data, void *userdata) { return strdup(shell); } -static char *specifier_machine_id(char specifier, void *data, void *userdata) { - sd_id128_t id; - char *buf; - int r; - - r = sd_id128_get_machine(&id); - if (r < 0) - return NULL; - - buf = new(char, 33); - if (!buf) - return NULL; - - return sd_id128_to_string(id, buf); -} - -static char *specifier_boot_id(char specifier, void *data, void *userdata) { - sd_id128_t id; - char *buf; - int r; - - r = sd_id128_get_boot(&id); - if (r < 0) - return NULL; - - buf = new(char, 33); - if (!buf) - return NULL; - - return sd_id128_to_string(id, buf); -} - -static char *specifier_host_name(char specifier, void *data, void *userdata) { - return gethostname_malloc(); -} - char *unit_name_printf(Unit *u, const char* format) { /* |