Sfoglia il codice sorgente

When building the dpkg command line, allow for 8192 cha...
Author: doogie
Date: 2003-04-27 03:02:40 GMT
When building the dpkg command line, allow for 8192 chars to be used,
instead of only 1024.

Arch Librarian 22 anni fa
parent
commit
2aefd2c272
2 ha cambiato i file con 4 aggiunte e 2 eliminazioni
  1. 2 2
      apt-pkg/deb/dpkgpm.cc
  2. 2 0
      debian/changelog

+ 2 - 2
apt-pkg/deb/dpkgpm.cc

@@ -1,6 +1,6 @@
 // -*- mode: cpp; mode: fold -*-
 // Description								/*{{{*/
-// $Id: dpkgpm.cc,v 1.25 2002/04/24 05:40:47 jgg Exp $
+// $Id: dpkgpm.cc,v 1.26 2003/04/27 03:02:40 doogie Exp $
 /* ######################################################################
 
    DPKG Package Manager - Provide an interface to dpkg
@@ -329,7 +329,7 @@ bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf)
 bool pkgDPkgPM::Go()
 {
    unsigned int MaxArgs = _config->FindI("Dpkg::MaxArgs",350);   
-   unsigned int MaxArgBytes = _config->FindI("Dpkg::MaxArgBytes",1024);
+   unsigned int MaxArgBytes = _config->FindI("Dpkg::MaxArgBytes",8192);
 
    if (RunScripts("DPkg::Pre-Invoke") == false)
       return false;

+ 2 - 0
debian/changelog

@@ -116,6 +116,8 @@ apt (0.5.4.9) unstable; urgency=low
   * Insert some newlines in the cdrom change media message.  Closes:
     #154601.
   * Add a rdepends command to apt-cache.  Closes: #159864.
+  * When building the dpkg command line, allow for 8192 chars to be used,
+    instead of only 1024.
 
  -- Adam Heath <doogie@debian.org>  Sun, 02 Feb 2003 02:54:45 -0600