summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gnome-ask-password-agent.vala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gnome-ask-password-agent.vala b/src/gnome-ask-password-agent.vala
index 46813683af..4f89a3e6d8 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);