diff --git a/src/gnome-ask-password-agent.vala b/src/gnome-ask-password-agent.vala index 1d3b715663..46813683af 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 LIBNOTIFY07 - stream.write(password.data, null); -#else +#if VALA_0_10 stream.write(password, password.length, null); +#else + stream.write(password.data, null); #endif } catch (Error e) { show_error(e.message);