summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2007-06-29 13:04:17 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2007-06-29 13:04:17 +0200
commit774a66876919712d5b8e12174f01f0337d2f3393 (patch)
tree35b565f25e3f7f2498122b4027ed5724688509d1 /cmdline
parent8756297c0f5987d2320955c21e5c64395ce311cc (diff)
* cmdline/apt-get.cc:
- ignore Vcs-Browser flag (#121770)
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/apt-get.cc9
1 files changed, 8 insertions, 1 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc
index fa7ae32eb..08bb1bc34 100644
--- a/cmdline/apt-get.cc
+++ b/cmdline/apt-get.cc
@@ -2116,10 +2116,15 @@ bool DoSource(CommandLine &CmdL)
string srec = Last->AsStr();
string::size_type pos = srec.find("\nVcs-");
- if (pos != string::npos )
+ while (pos != string::npos)
{
pos += strlen("\nVcs-");
string vcs = srec.substr(pos,srec.find(":",pos)-pos);
+ if(vcs == "Browser")
+ {
+ pos = srec.find("\nVcs-", pos);
+ continue;
+ }
pos += vcs.length()+2;
string::size_type epos = srec.find("\n", pos);
string uri = srec.substr(pos,epos-pos).c_str();
@@ -2135,6 +2140,8 @@ bool DoSource(CommandLine &CmdL)
ioprintf(c1out, "Are you sure you want to continue [yN]? ");
if(!YnPrompt(false))
return _error->Error(_("Abort."));
+ else
+ break;
}
// Back track