diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2007-06-29 13:06:40 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2007-06-29 13:06:40 +0200 |
commit | 919b4ed24108491272d463713097e47b4c4d9fc9 (patch) | |
tree | 92cdf1cd9b4455e303f1575d9f2596b1761d814f /cmdline | |
parent | bbf8bc2583df53a7562d99382831389454bc6ee9 (diff) | |
parent | 774a66876919712d5b8e12174f01f0337d2f3393 (diff) |
- ignore the Vcs-Browser tag (Fixes LP: #121770)
Diffstat (limited to 'cmdline')
-rw-r--r-- | cmdline/apt-get.cc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 6aafe9704..5a6369476 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 |