27.05.2015 20:53, Markus Armbruster wrote: > Since we now require GLib 2.22+ (commit f40685c), we don't have to > work around lack of g_strcmp0() anymore.
> qga/main.c | 2 +- > - if (domain && strcmp(domain, "syslog") == 0) { > + if (g_strcmp0(domain, "syslog") == 0) { Why bother? To me the current version is easier to read, it is traditional and working, while for g_strcmp0() I have to look up documentation. /mjt