[yast-commit] r63494 - in /branches/SuSE-Code-11-SP1-Branch/ftp-server: package/yast2-ftp-server.changes src/FtpServer.ycp src/ftp-server.ycp
Author: jsrain Date: Mon Feb 28 15:33:45 2011 New Revision: 63494 URL: http://svn.opensuse.org/viewcvs/yast?rev=63494&view=rev Log: fixed command line interface - not polling UI while reading the settings (bnc#660821) Modified: branches/SuSE-Code-11-SP1-Branch/ftp-server/package/yast2-ftp-server.changes branches/SuSE-Code-11-SP1-Branch/ftp-server/src/FtpServer.ycp branches/SuSE-Code-11-SP1-Branch/ftp-server/src/ftp-server.ycp Modified: branches/SuSE-Code-11-SP1-Branch/ftp-server/package/yast2-ftp-server.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP1-Branch/ftp-server/package/yast2-ftp-server.changes?rev=63494&r1=63493&r2=63494&view=diff ============================================================================== --- branches/SuSE-Code-11-SP1-Branch/ftp-server/package/yast2-ftp-server.changes (original) +++ branches/SuSE-Code-11-SP1-Branch/ftp-server/package/yast2-ftp-server.changes Mon Feb 28 15:33:45 2011 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Tue Feb 15 11:18:37 CET 2011 - jsrain@suse.cz + +- fixed command line interface - not polling UI while reading the + settings (bnc#660821) + +------------------------------------------------------------------ Mon Nov 30 10:26:55 CET 2009 - juhliarik@suse.cz - added fix for typo (bnc#525007) Modified: branches/SuSE-Code-11-SP1-Branch/ftp-server/src/FtpServer.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP1-Branch/ftp-server/src/FtpServer.ycp?rev=63494&r1=63493&r2=63494&view=diff ============================================================================== --- branches/SuSE-Code-11-SP1-Branch/ftp-server/src/FtpServer.ycp (original) +++ branches/SuSE-Code-11-SP1-Branch/ftp-server/src/FtpServer.ycp Mon Feb 28 15:33:45 2011 @@ -839,6 +839,8 @@ * @return boolean true if abort confirmed */ global boolean PollAbort() { + if (Mode::commandline()) + return false; if (UI::PollInput() == `abort) return Abort(); Modified: branches/SuSE-Code-11-SP1-Branch/ftp-server/src/ftp-server.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP1-Branch/ftp-server/src/ftp-server.ycp?rev=63494&r1=63493&r2=63494&view=diff ============================================================================== --- branches/SuSE-Code-11-SP1-Branch/ftp-server/src/ftp-server.ycp (original) +++ branches/SuSE-Code-11-SP1-Branch/ftp-server/src/ftp-server.ycp Mon Feb 28 15:33:45 2011 @@ -252,6 +252,7 @@ CommandLine::Print(""); + return false; } -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
jsrain@svn2.opensuse.org