From 202df05e0f01d79177dfeee6acf1748089f484a8 Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Fri, 11 Mar 2011 15:41:37 +0100 Subject: [PATCH] gnome-ask-password-agent: check for vala 0.10 instead of libnotify --- src/gnome-ask-password-agent.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gnome-ask-password-agent.vala b/src/gnome-ask-password-agent.vala index 1d3b71566..46813683a 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); -- 2.30.2