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

Bug#40927: marked as done (libc6: Another NMU for ARM)



Your message dated 8 Jul 1999 18:54:02 -0000
with message-id <[🔎] 19990708185402.21103.qmail@master.debian.org>
and subject line Bug#40927: fixed in glibc 2.1.1-13
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'm
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Ian Jackson
(administrator, Debian bugs database)

Received: (at submit) by bugs.debian.org; 7 Jul 1999 17:27:30 +0000
Received: (qmail 32553 invoked from network); 7 Jul 1999 17:27:28 -0000
Received: from tia.jimpick.com (204.209.212.111)
  by master.debian.org with SMTP; 7 Jul 1999 17:27:28 -0000
Received: from (fleming.jimpick.com) [204.209.212.121] 
	by tia.jimpick.com with esmtp (Exim 2.05 #1)
	id 111vTW-0005JA-00 (Debian); Wed, 7 Jul 1999 10:27:17 -0700
Received: from jim by fleming.jimpick.com with local (Exim 3.02 #1 (Debian))
	id 111vSx-0002G1-00; Wed, 07 Jul 1999 10:26:39 -0700
From: Jim Pick <jim@jimpick.com>
Subject: libc6: Another NMU for ARM
To: submit@bugs.debian.org
X-Mailer: bug 3.2.2
Message-Id: <[🔎] E111vSx-0002G1-00@fleming.jimpick.com>
Date: Wed, 07 Jul 1999 10:26:39 -0700

Package: libc6
Version: 2.1.1-12.3
Severity: normal

Hi,

I had to make another NMU for ARM.  My last one (the second), purported 
to fix the alignment issues for tftp on ARM, but I made a typo.  So here's 
a replacement debian/patches/arm-tftp.dpatch.

Cheers,

 - Jim


#! /bin/sh -e

# All lines beginning with `# DPATCH:' are a description of the patch.
# DP: A small patch to correct an alignment problem in the tftp struct
# DP: which affects ARM.

if [ $# -ne 2 ]; then
    echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
    exit 1
fi
case "$1" in
    -patch) patch -d "$2" -f -p1 < $0;;
    -unpatch) patch -d "$2" -f -R -p1 < $0;;
    *)
	echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
	exit 1
esac
exit 0


diff -urN glibc-2.1.1.backup/inet/arpa/tftp.h glibc-2.1.1/inet/arpa/tftp.h
--- glibc-2.1.1.backup/inet/arpa/tftp.h	Mon May 17 17:22:52 1999
+++ glibc-2.1.1/inet/arpa/tftp.h	Thu Jul  1 13:21:08 1999
@@ -56,7 +56,7 @@
 		unsigned short	tu_block;	/* block # */
 		short	tu_code;		/* error code */
 		char	tu_stuff[1];		/* request packet stuff */
-	} th_u __attribute__ ((__packed__));
+	} __attribute__ ((__packed__)) th_u;
 	char	th_data[1];			/* data or error string */
 } __attribute__ ((__packed__));
 


 


Reply to: