]> git.ipfire.org Git - ipfire-2.x.git/blob - src/patches/dnsmasq/0105-Add-a-couple-of-missed-logging-strings-to-the-catalo.patch
Merge branch 'next' of ssh://git.ipfire.org/pub/git/ipfire-2.x into next
[ipfire-2.x.git] / src / patches / dnsmasq / 0105-Add-a-couple-of-missed-logging-strings-to-the-catalo.patch
1 From d91b1fd402d8de127921dc4cca01007d9da23f92 Mon Sep 17 00:00:00 2001
2 From: Simon Kelley <simon@thekelleys.org.uk>
3 Date: Tue, 9 Jun 2015 20:45:07 +0100
4 Subject: [PATCH 105/113] Add a couple of missed logging strings to the
5 catalogue.
6
7 ---
8 src/dbus.c | 4 ++--
9 1 file changed, 2 insertions(+), 2 deletions(-)
10
11 diff --git a/src/dbus.c b/src/dbus.c
12 index 801d4825001b..3d686e86f41e 100644
13 --- a/src/dbus.c
14 +++ b/src/dbus.c
15 @@ -436,12 +436,12 @@ static DBusMessage *dbus_set_bool(DBusMessage *message, int flag, char *name)
16
17 if (enabled)
18 {
19 - my_syslog(LOG_INFO, "Enabling --%s option from D-Bus", name);
20 + my_syslog(LOG_INFO, _("Enabling --%s option from D-Bus"), name);
21 set_option_bool(flag);
22 }
23 else
24 {
25 - my_syslog(LOG_INFO, "Disabling --%s option from D-Bus", name);
26 + my_syslog(LOG_INFO, _("Disabling --%s option from D-Bus"), name);
27 reset_option_bool(flag);
28 }
29
30 --
31 2.1.0
32