Skip to content

Commit

Permalink
fixed typo in Pos*t*processISOURL() function name
Browse files Browse the repository at this point in the history
  • Loading branch information
Ladislav Slezak committed Jan 18, 2013
1 parent 8d298f6 commit 8d04a8a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/modules/SourceDialogs.ycp
Expand Up @@ -176,7 +176,7 @@ global string GetRepoName () {
* @param url string URL in the original form
* @return string postprocessed URL
*/
string PosprocessISOURL (string url) {
string PostprocessISOURL (string url) {
y2milestone ("Updating ISO URL %1", URL::HidePassword(url));
integer last = findlastof (url, "/") + 1;
string onlydir = substring (url, 0, last);
Expand Down Expand Up @@ -519,7 +519,7 @@ void NFSStoreParts()
}

if (iso)
_url = PosprocessISOURL (_url);
_url = PostprocessISOURL (_url);

if (UI::QueryWidget(`id(`mount_options), `Value) != `default) {
string mount_opts = (string)UI::QueryWidget(`id(`mount_options), `Value);
Expand Down Expand Up @@ -743,7 +743,7 @@ void IsoStore (string key, map event) {
];

_url = URL::Build(parsed);
_url = PosprocessISOURL(_url);
_url = PostprocessISOURL(_url);
}

/**
Expand Down Expand Up @@ -1358,7 +1358,7 @@ void ServerStoreParts()
{
boolean iso = (boolean)UI::QueryWidget (`id (`ch_iso), `Value);
if (iso)
_url = PosprocessISOURL (_url);
_url = PostprocessISOURL (_url);
}
}

Expand Down

0 comments on commit 8d04a8a

Please sign in to comment.