[systemd-commits] src/gnome-ask-password-agent.vala
Kay Sievers
kay at kemper.freedesktop.org
Fri Mar 11 06:56:50 PST 2011
src/gnome-ask-password-agent.vala | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit e75c058023a7e130599f5a3ae2981540d8e397c8
Author: Kay Sievers <kay.sievers at vrfy.org>
Date: Fri Mar 11 15:55:20 2011 +0100
gnome-ask-password-agent.vala: check for VALA_0_12
<juergbi> VALA_0_X is defined up to and including the current version
<juergbi> so VALA_0_10 is defined in 0.10 and 0.11 and 0.12
<juergbi> VALA_0_12 is defined in 0.11 and 0.12 (and later versions)
<juergbi> reverse the branches and use VALA_0_12 as conditional
<kay> juergbi: changing api but keep the defines?
<kay> how do we support vala 0.14 then?
<kay> you keep that model with the old defines?
<juergbi> VALA_0_10 corresponds to valaversion >= 0.10
diff --git a/src/gnome-ask-password-agent.vala b/src/gnome-ask-password-agent.vala
index 4681368..4f89a3e 100644
--- a/src/gnome-ask-password-agent.vala
+++ b/src/gnome-ask-password-agent.vala
@@ -239,10 +239,10 @@ public class MyStatusIcon : StatusIcon {
null);
OutputStream stream = new UnixOutputStream(to_process, true);
-#if VALA_0_10
- stream.write(password, password.length, null);
-#else
+#if VALA_0_12
stream.write(password.data, null);
+#else
+ stream.write(password, password.length, null);
#endif
} catch (Error e) {
show_error(e.message);
More information about the systemd-commits
mailing list