Skip to content

Commit

Permalink
added fix for handling button OK bnc#589541
Browse files Browse the repository at this point in the history
svn path=/trunk/nfs-client/; revision=61434

Conflicts:

	VERSION
	package/yast2-nfs-client.changes
  • Loading branch information
mvidner committed Nov 22, 2012
1 parent 5a03805 commit b6a095d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.17.13
2.17.14
12 changes: 12 additions & 0 deletions package/yast2-nfs-client.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Wed May 26 16:58:39 CEST 2010 - kmachalkova@suse.cz

- Fixed handling of return symbols (buggy patch for bnc#589541, now
bnc#608166)

-------------------------------------------------------------------
Mon Mar 22 15:22:12 CET 2010 - juhliarik@suse.cz

- added fix for problem with OK button (bnc#589541)
- 2.17.14

-------------------------------------------------------------------
Mon Jun 27 10:50:58 UTC 2011 - jreidinger@novell.com

Expand Down
8 changes: 6 additions & 2 deletions src/ui.ycp
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
}
/**
* Ask user for an entry.
* @param fstab_ent $["spec": "file": "mntopts":] or nil
* @param fstab_ent $["spec": "file": "mntops":] or nil
* @param existing list of fstab entries for duplicate mount-point checking
* @return a nfs_entry or nil
*/
Expand Down Expand Up @@ -701,7 +701,11 @@ rights.</p>") + fw_cwm_widget["help"]:"";
{
event = UI::WaitForEvent ();
ret = event["ID"]:nil;
if (ret == `cancel)
if (ret == `ok)
{
ret = `next;
}
else if (ret == `cancel)
{
ret = `abort;
}
Expand Down

0 comments on commit b6a095d

Please sign in to comment.