]> git.saurik.com Git - apt.git/commitdiff
* corrected a incorrect use of string().c_str() (thanks to mdz!)
authorMichael Vogt <michael.vogt@ubuntu.com>
Sun, 6 Apr 2003 16:04:51 +0000 (16:04 +0000)
committerMichael Vogt <michael.vogt@ubuntu.com>
Sun, 6 Apr 2003 16:04:51 +0000 (16:04 +0000)
apt-pkg/indexcopy.cc

index 77426386dc3571c4a1ddf6173cd1f33e672b58e7..1f65062f7c2e29757d08c195ca9500557ffe8bcf 100644 (file)
@@ -598,6 +598,9 @@ bool SigVerify::CopyAndVerify(string CDROM,string Name,vector<string> &SigList,
 
       string gpgvpath = _config->Find("Dir::Bin::gpg", "/usr/bin/gpgv");
       string pubringpath = _config->Find("Apt::GPGV::TrustedKeyring", "/etc/apt/trusted.gpg");
+      string releasegpg = *I+"Release.gpg";
+      string release = *I+"Release";
+
       Args[i++] = gpgvpath.c_str();
       Args[i++] = "--keyring";
       Args[i++] = pubringpath.c_str();
@@ -617,8 +620,9 @@ bool SigVerify::CopyAndVerify(string CDROM,string Name,vector<string> &SigList,
            }
          }
       }
-      Args[i++] = string(*I+"Release.gpg").c_str();
-      Args[i++] = string(*I+"Release").c_str();
+      
+      Args[i++] = releasegpg.c_str();
+      Args[i++] = release.c_str();
       Args[i++] = NULL;
       
       pid_t pid = ExecFork();