]> git.saurik.com Git - apt.git/commitdiff
* apt-pkg/deb/dpkgpm.cc:
authorMichael Vogt <michael.vogt@ubuntu.com>
Fri, 6 Mar 2009 08:56:30 +0000 (09:56 +0100)
committerMichael Vogt <michael.vogt@ubuntu.com>
Fri, 6 Mar 2009 08:56:30 +0000 (09:56 +0100)
  - revert the change by Kees again for the amd64 ALL-CAPS problem

apt-pkg/deb/dpkgpm.cc

index 686cbc6ee4cdf8efdfbf56c41d0bc1ba367f13fe..1d45e70e905786aa2101616a1262ea02f97355b0 100644 (file)
@@ -782,16 +782,14 @@ bool pkgDPkgPM::Go(int OutStatusFd)
       sighandler_t old_SIGHUP = signal(SIGHUP,SIG_IGN);
 
       struct   termios tt;
-      struct   termios tt_out;
       struct   winsize win;
       int      master;
       int      slave;
 
       // FIXME: setup sensible signal handling (*ick*)
       tcgetattr(0, &tt);
-      tcgetattr(1, &tt_out);
       ioctl(0, TIOCGWINSZ, (char *)&win);
-      if (openpty(&master, &slave, NULL, &tt_out, &win) < 0) 
+      if (openpty(&master, &slave, NULL, &tt, &win) < 0) 
       {
         const char *s = _("Can not write log, openpty() "
                           "failed (/dev/pts not mounted?)\n");