[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#163586: marked as done (xfree86: drop use of strnlen() in xserver-wrapper.c for Debian GNU/NetBSD)



Your message dated Thu, 17 Oct 2002 16:14:54 -0400
with message-id <E182H2k-0006be-00@auric.debian.org>
and subject line Bug#163586: fixed in xfree86 4.2.1-3
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 6 Oct 2002 22:31:00 +0000
>From lucifer@lightbearer.com Sun Oct 06 17:31:00 2002
Return-path: <lucifer@lightbearer.com>
Received: from dogma.lightbearer.com (deargod.lightbearer.com) [216.150.202.131] (qmailr)
	by master.debian.org with smtp (Exim 3.12 1 (Debian))
	id 17yJvQ-0002jX-00; Sun, 06 Oct 2002 17:31:00 -0500
Received: (qmail 26550 invoked by uid 1000); 6 Oct 2002 22:31:00 -0000
From: "Joel Baker" <lucifer@lightbearer.com>
Date: Sun, 6 Oct 2002 16:31:00 -0600
To: submit@bugs.debian.org
Subject: strnlen portability patch
Message-ID: <20021006223100.GA26544@lightbearer.com>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
	protocol="application/pgp-signature"; boundary="YZ5djTAD1cGYuMQK"
Content-Disposition: inline
User-Agent: Mutt/1.3.28i
Delivered-To: submit@bugs.debian.org


--YZ5djTAD1cGYuMQK
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Package: xfree86
Version: 4.2.1-1
Patch: 001_xserver-wrapper_no_strnlen (strnlen portability patch)
Author: Joel Baker <joel@lightbearer.com>
Submitted: No

This patch undoes an explicit GNU-ism (relying on strnlen), replacing it
with a libc-agnostic call. The other option (to provide an implementation
of strnlen) seemed far more invasive. I agree with the author; strnlen is
nice - but not universal, and used only once, so trying to check for it
would be more pain than really seems worthwhile.

diff -ur xfree86-4.2.1.ORIG/debian/local/xserver-wrapper.c xfree86-4.2.1/de=
bian/local/xserver-wrapper.c
--- xfree86-4.2.1.ORIG/debian/local/xserver-wrapper.c	2002-09-24 23:38:31.0=
00000000 +0000
+++ xfree86-4.2.1/debian/local/xserver-wrapper.c	2002-09-24 23:43:44.000000=
000 +0000
@@ -75,9 +75,6 @@
  *
  */
=20
-/* I like strnlen() */
-#define _GNU_SOURCE
-
 #include <ctype.h>
 #include <errno.h>
 #include <fcntl.h>
@@ -169,6 +166,7 @@
   char value[256];
   int i;
   int intval;
+  int length;
   char *val;
   mode_t mask;
   SecurityLevel level =3D RootOnly;
@@ -187,7 +185,9 @@
       value[0] =3D '\0';
       if (sscanf(line, " %64[A-Za-z0-9_] =3D %256[A-Za-z0-9_ -] ", var, va=
lue) > 0) {
         /* truncate extra spaces at end of value */
-        for (i =3D (strnlen(value, 256) - 1); (value[i] =3D=3D ' '); i--) {
+        length =3D strlen(value);
+        if (length > 256) { length =3D 256; }
+        for (i =3D (length - 1); (value[i] =3D=3D ' '); i--) {
           value[i] =3D '\0';
         }
         /* DEBUG (void) fprintf(stderr, "var: %s, value: %s.\n", var, valu=
e); */
--=20
***************************************************************************
Joel Baker                           System Administrator - lightbearer.com
lucifer@lightbearer.com              http://users.lightbearer.com/lucifer/

--YZ5djTAD1cGYuMQK
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE9oLmj13sEBdj5qMURAizoAJ4oythzI+ahf7URcSHrFLozANBkyACdFUdL
BQakzjna/TfsOuT8vid4kJU=
=3r7w
-----END PGP SIGNATURE-----

--YZ5djTAD1cGYuMQK--

---------------------------------------
Received: (at 163586-close) by bugs.debian.org; 17 Oct 2002 20:26:21 +0000
>From katie@auric.debian.org Thu Oct 17 15:26:20 2002
Return-path: <katie@auric.debian.org>
Received: from auric.debian.org [206.246.226.45] (mail)
	by master.debian.org with esmtp (Exim 3.12 1 (Debian))
	id 182HDo-0003qX-00; Thu, 17 Oct 2002 15:26:20 -0500
Received: from katie by auric.debian.org with local (Exim 3.35 1 (Debian))
	id 182H2k-0006be-00; Thu, 17 Oct 2002 16:14:54 -0400
From: Branden Robinson <branden@deadbeast.net>
To: 163586-close@bugs.debian.org
X-Katie: $Revision: 1.26 $
Subject: Bug#163586: fixed in xfree86 4.2.1-3
Message-Id: <E182H2k-0006be-00@auric.debian.org>
Sender: Archive Administrator <katie@auric.debian.org>
Date: Thu, 17 Oct 2002 16:14:54 -0400
Delivered-To: 163586-close@bugs.debian.org
X-Spam-Status: No, hits=-2.1 required=5.0
	tests=PGP_SIGNATURE,SPAM_PHRASE_00_01,SUPERLONG_LINE
	version=2.41
X-Spam-Level: 

We believe that the bug you reported is fixed in the latest version of
xfree86, which is due to be installed in the Debian FTP archive:

lbxproxy_4.2.1-3_i386.deb
  to pool/main/x/xfree86/lbxproxy_4.2.1-3_i386.deb
libdps-dev_4.2.1-3_i386.deb
  to pool/main/x/xfree86/libdps-dev_4.2.1-3_i386.deb
libdps1-dbg_4.2.1-3_i386.deb
  to pool/main/x/xfree86/libdps1-dbg_4.2.1-3_i386.deb
libdps1_4.2.1-3_i386.deb
  to pool/main/x/xfree86/libdps1_4.2.1-3_i386.deb
libxaw6-dbg_4.2.1-3_i386.deb
  to pool/main/x/xfree86/libxaw6-dbg_4.2.1-3_i386.deb
libxaw6-dev_4.2.1-3_i386.deb
  to pool/main/x/xfree86/libxaw6-dev_4.2.1-3_i386.deb
libxaw6_4.2.1-3_i386.deb
  to pool/main/x/xfree86/libxaw6_4.2.1-3_i386.deb
libxaw7-dbg_4.2.1-3_i386.deb
  to pool/main/x/xfree86/libxaw7-dbg_4.2.1-3_i386.deb
libxaw7-dev_4.2.1-3_i386.deb
  to pool/main/x/xfree86/libxaw7-dev_4.2.1-3_i386.deb
libxaw7_4.2.1-3_i386.deb
  to pool/main/x/xfree86/libxaw7_4.2.1-3_i386.deb
proxymngr_4.2.1-3_i386.deb
  to pool/main/x/xfree86/proxymngr_4.2.1-3_i386.deb
twm_4.2.1-3_i386.deb
  to pool/main/x/xfree86/twm_4.2.1-3_i386.deb
x-window-system-core_4.2.1-3_i386.deb
  to pool/main/x/xfree86/x-window-system-core_4.2.1-3_i386.deb
x-window-system_4.2.1-3_all.deb
  to pool/main/x/xfree86/x-window-system_4.2.1-3_all.deb
xbase-clients_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xbase-clients_4.2.1-3_i386.deb
xdm_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xdm_4.2.1-3_i386.deb
xfonts-100dpi-transcoded_4.2.1-3_all.deb
  to pool/main/x/xfree86/xfonts-100dpi-transcoded_4.2.1-3_all.deb
xfonts-100dpi_4.2.1-3_all.deb
  to pool/main/x/xfree86/xfonts-100dpi_4.2.1-3_all.deb
xfonts-75dpi-transcoded_4.2.1-3_all.deb
  to pool/main/x/xfree86/xfonts-75dpi-transcoded_4.2.1-3_all.deb
xfonts-75dpi_4.2.1-3_all.deb
  to pool/main/x/xfree86/xfonts-75dpi_4.2.1-3_all.deb
xfonts-base-transcoded_4.2.1-3_all.deb
  to pool/main/x/xfree86/xfonts-base-transcoded_4.2.1-3_all.deb
xfonts-base_4.2.1-3_all.deb
  to pool/main/x/xfree86/xfonts-base_4.2.1-3_all.deb
xfonts-cyrillic_4.2.1-3_all.deb
  to pool/main/x/xfree86/xfonts-cyrillic_4.2.1-3_all.deb
xfonts-scalable_4.2.1-3_all.deb
  to pool/main/x/xfree86/xfonts-scalable_4.2.1-3_all.deb
xfree86-common_4.2.1-3_all.deb
  to pool/main/x/xfree86/xfree86-common_4.2.1-3_all.deb
xfree86_4.2.1-3.diff.gz
  to pool/main/x/xfree86/xfree86_4.2.1-3.diff.gz
xfree86_4.2.1-3.dsc
  to pool/main/x/xfree86/xfree86_4.2.1-3.dsc
xfs_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xfs_4.2.1-3_i386.deb
xfwp_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xfwp_4.2.1-3_i386.deb
xlib6g-dev_4.2.1-3_all.deb
  to pool/main/x/xfree86/xlib6g-dev_4.2.1-3_all.deb
xlib6g_4.2.1-3_all.deb
  to pool/main/x/xfree86/xlib6g_4.2.1-3_all.deb
xlibmesa-dev_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xlibmesa-dev_4.2.1-3_i386.deb
xlibmesa3-dbg_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xlibmesa3-dbg_4.2.1-3_i386.deb
xlibmesa3_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xlibmesa3_4.2.1-3_i386.deb
xlibosmesa-dev_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xlibosmesa-dev_4.2.1-3_i386.deb
xlibosmesa3-dbg_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xlibosmesa3-dbg_4.2.1-3_i386.deb
xlibosmesa3_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xlibosmesa3_4.2.1-3_i386.deb
xlibs-dbg_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xlibs-dbg_4.2.1-3_i386.deb
xlibs-dev_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xlibs-dev_4.2.1-3_i386.deb
xlibs-pic_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xlibs-pic_4.2.1-3_i386.deb
xlibs_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xlibs_4.2.1-3_i386.deb
xmh_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xmh_4.2.1-3_i386.deb
xnest_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xnest_4.2.1-3_i386.deb
xprt_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xprt_4.2.1-3_i386.deb
xserver-common_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xserver-common_4.2.1-3_i386.deb
xserver-xfree86-dbg_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xserver-xfree86-dbg_4.2.1-3_i386.deb
xserver-xfree86_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xserver-xfree86_4.2.1-3_i386.deb
xspecs_4.2.1-3_all.deb
  to pool/main/x/xfree86/xspecs_4.2.1-3_all.deb
xterm_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xterm_4.2.1-3_i386.deb
xutils_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xutils_4.2.1-3_i386.deb
xvfb_4.2.1-3_i386.deb
  to pool/main/x/xfree86/xvfb_4.2.1-3_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 163586@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Branden Robinson <branden@deadbeast.net> (supplier of updated xfree86 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Wed, 16 Oct 2002 14:09:15 -0500
Source: xfree86
Binary: xserver-common libxaw7-dbg xbase-clients twm xlibmesa3-dbg xfonts-scalable xfonts-75dpi libdps1-dbg xlib6g-dev xmh libxaw6-dbg xfwp xlibs xlibosmesa3-dbg libdps-dev xserver-xfree86-dbg xlibmesa-dev xserver-xfree86 libdps1 proxymngr xfonts-base-transcoded libxaw6-dev lbxproxy xfonts-cyrillic x-window-system-core xlib6g xutils xspecs xlibs-pic x-window-system xfree86-common xfs xfonts-base xlibmesa3 xlibs-dbg libxaw7-dev xnest xfonts-100dpi-transcoded libxaw6 xfonts-100dpi xterm xfonts-75dpi-transcoded xprt xlibosmesa-dev xvfb libxaw7 xlibosmesa3 xdm xlibs-dev
Architecture: source i386 all
Version: 4.2.1-3
Distribution: unstable
Urgency: low
Maintainer: Branden Robinson <branden@debian.org>
Changed-By: Branden Robinson <branden@deadbeast.net>
Description: 
 lbxproxy   - Low Bandwidth X (LBX) proxy server
 libdps-dev - Display PostScript (DPS) client library development files
 libdps1    - Display PostScript (DPS) client library
 libdps1-dbg - Display PostScript (DPS) client library (unstripped)
 libxaw6    - X Athena widget set library (version 6)
 libxaw6-dbg - X Athena widget set library (version 6) (unstripped)
 libxaw6-dev - X Athena widget set library development files (version 6)
 libxaw7    - X Athena widget set library
 libxaw7-dbg - X Athena widget set library (unstripped)
 libxaw7-dev - X Athena widget set library development files
 proxymngr  - X proxy services manager
 twm        - Tab window manager
 x-window-system - X Window System
 x-window-system-core - X Window System core components
 xbase-clients - miscellaneous X clients
 xdm        - X display manager
 xfonts-100dpi - 100 dpi fonts for X
 xfonts-100dpi-transcoded - 100 dpi fonts for X (transcoded from ISO 10646-1)
 xfonts-75dpi - 75 dpi fonts for X
 xfonts-75dpi-transcoded - 75 dpi fonts for X (transcoded from ISO 10646-1)
 xfonts-base - standard fonts for X
 xfonts-base-transcoded - standard fonts for X (transcoded from ISO 10646-1)
 xfonts-cyrillic - Cyrillic fonts for X
 xfonts-scalable - scalable fonts for X
 xfree86-common - X Window System (XFree86) infrastructure
 xfs        - X font server
 xfwp       - X firewall proxy server
 xlib6g     - pseudopackage providing X libraries
 xlib6g-dev - pseudopackage providing X library development files
 xlibmesa-dev - XFree86 version of Mesa 3D graphics library development files
 xlibmesa3  - XFree86 version of Mesa 3D graphics library
 xlibmesa3-dbg - XFree86 version of Mesa 3D graphics library (unstripped)
 xlibosmesa-dev - Mesa/XFree86 off-screen rendering library development files
 xlibosmesa3 - Mesa/XFree86 off-screen rendering library
 xlibosmesa3-dbg - Mesa/XFree86 off-screen rendering library (unstripped)
 xlibs      - X Window System client libraries
 xlibs-dbg  - X Window System client libraries (unstripped)
 xlibs-dev  - X Window System client library development files
 xlibs-pic  - X Window System client extension library PIC archives
 xmh        - X interface to the MH mail system
 xnest      - nested X server
 xprt       - X print server
 xserver-common - files and utilities common to all X servers
 xserver-xfree86 - the XFree86 X server
 xserver-xfree86-dbg - the XFree86 X server (static version with debugging symbols)
 xspecs     - X protocol, extension, and library technical specifications
 xterm      - X terminal emulator
 xutils     - X Window System utility programs
 xvfb       - virtual framebuffer X server
Closes: 130877 149549 158512 163586 163927 164050 164217 164422 164484 164486 164489 164491 164708
Changes: 
 xfree86 (4.2.1-3) unstable; urgency=low
 .
   * patch #000_post421: resynced with xf-4_2-branch as of 2002-10-16
     + Fix black cursor images on Mac OS X 10.2.2 (Joseph Maurer).
     + Fix XDarwin rootless crash when window resizing with complex bit gravity
       (Greg Parker).
 .
   * patch #000_stolen_from_HEAD_neomagic_driver: new; backported Xv support
     from HEAD by request of Yaacov Akiba Slama and Klaus Weidner
 .
   * patch #028: new; syntax cleanups to various .y files that cause GNU Bison
     1.50 to choke and die (Closes: #164484,#164486,#164489,#164491)
   * patch #033: deleted; relocated in part to #909
   * patch #087: new; cosmetic cleanups to some ATI driver messages
   * patch #050,084: patch XF86Config.man, not XF86Config-4.man
   * patch #086: some fixes to XF86Setup, XF86DGA, XF86VidMode, reconfig, and
     xvidtune manpages
   * patch #087: new; comsetic fix to some ATI driver log messages
   * patch #088: new; enable DPMS on LCD and DFP monitors attached to Radeon
     cards, not just CRTs (Closes: #164217)
   * patch #089: new; in fbdev driver, pass depth24flags to xf86SetDepthBpp
     based upon reported capabilities of underlying framebuffer hardware
     (thanks, Michel Dänzer) (see #163807)
   * patch #840,841,842,843,844: new; patches to support Debian GNU/NetBSD,
     courtesy of Joel Baker
   * patch #900: uncomment definition of DebianMaintainer in NetBSD.cf as well
   * patch #909: new; formerly part of #033 -- change the .TH section of the
     XF86Config.man file to refer to itself as "XF86Config-4" (see change to
     debian/rules below)
 .
   * debian/{MANIFEST,scripts/vars,xlibs-dev.files,xlibs-pic.files,
     xserver-xfree86.files}.netbsd-i386: add files to support Debian GNU/NetBSD
     for i386 (Closes: #164050)
   * debian/README: "rezoned" the patch sequence numbers for non-Linux Debian
     ports; those who of you who care about such things should re-read this
     file
   * debian/control:
     - add "hurd | freebsd | netbsd | openbsd" as alternatives to
       "kernel-headers-2.4" build dependency (Closes: #130877)
     - add dependency on "libc6-dev | libc-dev" to libdps-dev, libxaw6-dev,
       libxaw7-dev, xlibmesa-dev, and xlibosmesa-dev
     - add "libc-dev" as alternate dependency for libc6-dev in xlibs-dev
     - add netbsd-i386 to list of architectures for which xserver-xfree86 and
       xserver-xfree86-dbg are built
     - xfree86-common conflicts with task-x-window-system{,-core} to force
       these old potato-era packages off the system (Closes: #163927)
   * debian/local/xserver-wrapper.c:
     - make the nice() error handling switchable with a #define between SuSv2
       semantics and old-style semantics
     - stop using the GNU extension strnlen() to appease the Debian GNU/NetBSD
       geeks, who are using BSD's C library (Closes: #163586)
   * debian/rules:
     - use dpkg-architecture -qDEB_BUILD_ARCH instead of dpkg
       --print-gnu-build-architecture (Closes: #149549)
     - export GROFF_NO_SGR=1 to prevent corruption of specs docs in text format
       (Closes: #164708)
     - (build): produce generated files in debian/local before compiling the
       source tree; this way we no early on if the build is going to bomb due
       to that stuff
     - (install): rename the XF86Config.5x manpage to XF86Config-4.5x
   * debian/shell-lib.sh:
     - use "which" instead of "command -v"
     - analyze_path(): don't freak out if a dpkg backup directory doesn't exist
       for the path being analyzed
     - check_symlinks_and_bomb(): don't call analyze_path() in all three
       branches of an if-elif-else; instead use a $PROBLEM variable that
       defaults to null, and gets set if there is a problem
   * debian/xbase-clients.preinst.in: loosen the regex we use to figure out
     what the hell's going on with update-alternatives (Closes: #158512)
   * debian/xbase-clients.postrm.in: remove /etc/X11/xsm directory on purge
     (Closes: #164422)
   * debian/xlibs.links: add app-defaults link from /usr/X11R6/lib/X11 to
     /etc/X11
   * debian/xlibs.postinst.in: stop manually creating symlink from
     /usr/X11R6/lib/X11/app-defaults to /etc/X11/app-defaults now that woody
     has released
   * debian/xlibs.postrm.in: remove /etc/X11/xkb directory on purge
   * debian/xserver-common.postrm.in: stop removing /etc/X11/XF86Config on
     purge (this is xserver-common-v3's job)
   * debian/xserver-xfree86.{bug,config.in,postinst.in}: use "which" instead of
     "command -v"
Files: 
 5b52fac84d0db13c1845f352f30430bc 1530 x11 optional xfree86_4.2.1-3.dsc
 74ea2fd0eba50f65ace25afb57296b1a 2063492 x11 optional xfree86_4.2.1-3.diff.gz
 fb118e45e3b5fecb502d90a53bff1a80 126044 x11 optional lbxproxy_4.2.1-3_i386.deb
 036d6726791a997c9849b36ba341f269 162216 libs optional libdps1_4.2.1-3_i386.deb
 71a5eb2d3cc68f2fe0cd019028b01c4c 403590 devel extra libdps1-dbg_4.2.1-3_i386.deb
 4a19e383678de6452d33ebe95a1f04b2 223590 devel optional libdps-dev_4.2.1-3_i386.deb
 9ae56c2c93d2161ca9386da79e41e1e9 160542 libs optional libxaw6_4.2.1-3_i386.deb
 41ca2da992de998c67907d72d5bf538c 329350 devel extra libxaw6-dbg_4.2.1-3_i386.deb
 fd103d958b4c765f16b11098905eeec1 287780 devel extra libxaw6-dev_4.2.1-3_i386.deb
 fa8c913563e04cb3f7f682f5a9450a58 208054 libs optional libxaw7_4.2.1-3_i386.deb
 d604156f591047092b348eb4a0565061 430736 devel extra libxaw7-dbg_4.2.1-3_i386.deb
 180b921c1f20cef0880feabe3487651c 287664 devel optional libxaw7-dev_4.2.1-3_i386.deb
 84becc838f417606394ba3be3eaafea3 70244 x11 optional proxymngr_4.2.1-3_i386.deb
 16186c8de9792e39abc5025b9b3b5ff1 145632 x11 optional twm_4.2.1-3_i386.deb
 c1503585687319786b1eab935702cc5e 1466680 x11 optional xbase-clients_4.2.1-3_i386.deb
 b5fcea062290cfbb448f011d075885af 165104 x11 optional xdm_4.2.1-3_i386.deb
 6883038bbcdf19c879948a65f4f58234 270726 x11 optional xfs_4.2.1-3_i386.deb
 5de1c80486fb3bffcf1d270b3d63ebd7 74498 x11 optional xfwp_4.2.1-3_i386.deb
 1d2a1f184c3c357b8bdf9becce3660be 3854358 libs optional xlibmesa3_4.2.1-3_i386.deb
 123029a2ff18b37e4e8dfa3248ec045f 855554 devel extra xlibmesa3-dbg_4.2.1-3_i386.deb
 75e33e6c6096aec122cebe501e1026bc 822664 devel optional xlibmesa-dev_4.2.1-3_i386.deb
 cd5a7d58f9c5814dd83ea6acb2563f44 461366 libs optional xlibosmesa3_4.2.1-3_i386.deb
 bc018ad454b5893dbcd056daf33635bc 971696 devel extra xlibosmesa3-dbg_4.2.1-3_i386.deb
 748f41891acf33159969574c845838c2 520872 devel optional xlibosmesa-dev_4.2.1-3_i386.deb
 7e82964d3d4a953c2e21395ef0a1c6c9 1193390 libs optional xlibs_4.2.1-3_i386.deb
 1f7d488531d892f5129839c5d1a7fd43 2214262 devel extra xlibs-dbg_4.2.1-3_i386.deb
 d9addaac52947e77cf6fd4b73b69fc60 2574468 devel optional xlibs-dev_4.2.1-3_i386.deb
 04b0320d1ad25a6e9312128fdb1a5c1f 96702 devel optional xlibs-pic_4.2.1-3_i386.deb
 7ebe46cbe0add4c3a9e78041a139e156 118170 mail extra xmh_4.2.1-3_i386.deb
 dfba141d5a460b296619109c5a1a777d 1092646 x11 optional xnest_4.2.1-3_i386.deb
 552e72ab0bdd61ceee5df2e6bfdd1c1a 823822 x11 optional xprt_4.2.1-3_i386.deb
 685252df2c54831700a3bf1c8fe09bbe 216872 x11 optional xserver-common_4.2.1-3_i386.deb
 a3a7e26730076cefa1ea9e7163de38df 3994552 x11 optional xserver-xfree86_4.2.1-3_i386.deb
 6326af1b8fc6637059c0fae54429810d 7207080 x11 optional xserver-xfree86-dbg_4.2.1-3_i386.deb
 ab062aa5e0eae508c4cdfdbd38cb6505 488492 x11 optional xterm_4.2.1-3_i386.deb
 20546fc4420f6dd5fa21dffbf7285cdf 633000 x11 optional xutils_4.2.1-3_i386.deb
 d2bae5d869a5c6d7b2a9a5d49e263d6d 1203732 x11 optional xvfb_4.2.1-3_i386.deb
 a1e93282197a9f196f3794f4db0df0c7 53874 x11 optional x-window-system-core_4.2.1-3_i386.deb
 40d6aae7e1be6d7d8103b12cdafac25f 4252372 x11 optional xfonts-100dpi_4.2.1-3_all.deb
 a11e3db7c2bf3a9d0a911069551b6897 8083106 x11 optional xfonts-100dpi-transcoded_4.2.1-3_all.deb
 129b2715185964b761162c531ea88d4a 3730106 x11 optional xfonts-75dpi_4.2.1-3_all.deb
 3c42e8ef8d28fa38dc7a39421ce4d96d 6959938 x11 optional xfonts-75dpi-transcoded_4.2.1-3_all.deb
 9648ef53e7e3f4b8dadd0c6eaa65b7c5 5007130 x11 optional xfonts-base_4.2.1-3_all.deb
 4a69aa2816f8e3e79616bbe5480e71c2 1093038 x11 optional xfonts-base-transcoded_4.2.1-3_all.deb
 51597e43ce75a6cd39bb7781eb9ed0ae 425756 x11 optional xfonts-cyrillic_4.2.1-3_all.deb
 244ba81b6b52cef32f100c620851e04a 789962 x11 optional xfonts-scalable_4.2.1-3_all.deb
 340b9a8853e50af3d85c979e33e9e536 599564 x11 optional xfree86-common_4.2.1-3_all.deb
 9024c556679124a35608b6ab60774603 4172108 x11 optional xspecs_4.2.1-3_all.deb
 57067864a01fdb77aee309d16987c756 53870 libs optional xlib6g_4.2.1-3_all.deb
 06f1943b2a4cdd9c642016110578447d 53668 devel optional xlib6g-dev_4.2.1-3_all.deb
 3d3b7ab839f03cc2fa854445c87f325a 53706 x11 optional x-window-system_4.2.1-3_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.0 (GNU/Linux)

iEYEARECAAYFAj2tyukACgkQ6kxmHytGonz5sgCeLIH4Y3aGFA4buAhEw95Jb/q+
zvwAoJ7kjyQ3EzAXJKrxEJH9OhujcwgG
=1wap
-----END PGP SIGNATURE-----




Reply to: