From: Kay Sievers Date: Fri, 11 Mar 2011 14:41:37 +0000 (+0100) Subject: gnome-ask-password-agent: check for vala 0.10 instead of libnotify X-Git-Tag: v21~115 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=202df05e0f01d79177dfeee6acf1748089f484a8 gnome-ask-password-agent: check for vala 0.10 instead of libnotify --- 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);