Mailinglist Archive: yast-commit (210 mails)
| < Previous | Next > |
[yast-commit] r63380 - /trunk/ntp-client/src/ntp-client_proposal.ycp
- From: varkoly@xxxxxxxxxxxxxxxxx
- Date: Wed, 09 Feb 2011 12:01:31 -0000
- Message-id: <20110209120132.811053256C@svn2.opensuse.org>
Author: varkoly
Date: Wed Feb 9 13:01:29 2011
New Revision: 63380
URL: http://svn.opensuse.org/viewcvs/yast?rev=63380&view=rev
Log:
Fix the parameter of WriteNtpSettings
Modified:
trunk/ntp-client/src/ntp-client_proposal.ycp
Modified: trunk/ntp-client/src/ntp-client_proposal.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/ntp-client/src/ntp-client_proposal.ycp?rev=63380&r1=63379&r2=63380&view=diff
==============================================================================
--- trunk/ntp-client/src/ntp-client_proposal.ycp (original)
+++ trunk/ntp-client/src/ntp-client_proposal.ycp Wed Feb 9 13:01:29 2011
@@ -231,7 +231,7 @@
return ret;
}
-boolean WriteNtpSettings (list ntp_servers, string ntp_server, boolean
run_service) {
+boolean WriteNtpSettings (list<string> ntp_servers, string ntp_server, boolean
run_service) {
NtpClient::modified = true;
if ( ntp_servers != [] )
@@ -275,7 +275,7 @@
*/
symbol Write(map param) {
symbol ret = nil;
- list ntp_servers = param["servers"]:[];
+ list<string> ntp_servers = param["servers"]:[];
string ntp_server = param["server"]:"";
boolean run_service = param["run_service"]:true;
if (ntp_server == "")
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Wed Feb 9 13:01:29 2011
New Revision: 63380
URL: http://svn.opensuse.org/viewcvs/yast?rev=63380&view=rev
Log:
Fix the parameter of WriteNtpSettings
Modified:
trunk/ntp-client/src/ntp-client_proposal.ycp
Modified: trunk/ntp-client/src/ntp-client_proposal.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/ntp-client/src/ntp-client_proposal.ycp?rev=63380&r1=63379&r2=63380&view=diff
==============================================================================
--- trunk/ntp-client/src/ntp-client_proposal.ycp (original)
+++ trunk/ntp-client/src/ntp-client_proposal.ycp Wed Feb 9 13:01:29 2011
@@ -231,7 +231,7 @@
return ret;
}
-boolean WriteNtpSettings (list ntp_servers, string ntp_server, boolean
run_service) {
+boolean WriteNtpSettings (list<string> ntp_servers, string ntp_server, boolean
run_service) {
NtpClient::modified = true;
if ( ntp_servers != [] )
@@ -275,7 +275,7 @@
*/
symbol Write(map param) {
symbol ret = nil;
- list ntp_servers = param["servers"]:[];
+ list<string> ntp_servers = param["servers"]:[];
string ntp_server = param["server"]:"";
boolean run_service = param["run_service"]:true;
if (ntp_server == "")
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |