Skip to content

Commit

Permalink
Merge pull request #8 from jsuchome/master
Browse files Browse the repository at this point in the history
added API for Storage::GetWinPrimPartitions (bnc#797665)
  • Loading branch information
jsuchome committed Jan 30, 2013
2 parents 99d3e8d + 93af492 commit dd32f73
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.23.2
2.23.3
6 changes: 6 additions & 0 deletions package/yast2-packager.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Jan 30 11:21:44 CET 2013 - jsuchome@suse.cz

- added API for Storage::GetWinPrimPartitions (bnc#797665)
- 2.23.3

-------------------------------------------------------------------
Tue Jan 29 11:25:51 UTC 2013 - lslezak@suse.cz

Expand Down
12 changes: 12 additions & 0 deletions src/clients/wrapper_storage.ycp
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,18 @@
ret = Storage::RemoveDmMapsTo(param1);
}
}
else if (func == "GetWinPrimPartitions")
{
if (size(param) == 0)
{
y2error("Missing argument for Storage::GetWinPrimPartitions()");
}
else
{
map<string,map> param1 = (map<string,map>)param[0]:nil;
ret = Storage::GetWinPrimPartitions (param1);
}
}
else
{
// the required function is not known
Expand Down

0 comments on commit dd32f73

Please sign in to comment.