summaryrefslogtreecommitdiff
path: root/service.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-04-23 20:25:55 +0200
committerLennart Poettering <lennart@poettering.net>2010-04-23 20:25:55 +0200
commit40d50879d9339e539a30e5d32234baffb732f0f9 (patch)
tree6eb99a62692a3f4ac1e6e38260460984fcef430c /service.c
parent5dcfe57bb1a036ba6e4af10746c42892c44f0766 (diff)
get rid of unicode arrows, since the linux console cannot show them, not even in unicode mode
Diffstat (limited to 'service.c')
-rw-r--r--service.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/service.c b/service.c
index 37d4e9c381..d514922b6b 100644
--- a/service.c
+++ b/service.c
@@ -875,7 +875,7 @@ static void service_dump(Unit *u, FILE *f, const char *prefix) {
if (!s->exec_command[c])
continue;
- fprintf(f, "%sā†’ %s:\n",
+ fprintf(f, "%s-> %s:\n",
prefix, service_exec_command_to_string(c));
exec_command_dump_list(s->exec_command[c], f, prefix2);
@@ -1069,7 +1069,7 @@ static void service_set_state(Service *s, ServiceState state) {
service_close_socket_fd(s);
if (old_state != state)
- log_debug("%s changed %s ā†’ %s", UNIT(s)->meta.id, service_state_to_string(old_state), service_state_to_string(state));
+ log_debug("%s changed %s -> %s", UNIT(s)->meta.id, service_state_to_string(old_state), service_state_to_string(state));
unit_notify(UNIT(s), state_translation_table[old_state], state_translation_table[state]);
}