Bug#59471: marked as done ([tosi@ees2.oulu.fi: weak assertions in libstore/rdwr.c])

2000-03-02 Thread Debian Bug Tracking System

Your message dated Thu, 2 Mar 2000 21:24:48 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#59471: [[EMAIL PROTECTED]: weak assertions in libstore/rdwr.c]
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 2 Mar 2000 21:37:58 +
Received: (qmail 32585 invoked from network); 2 Mar 2000 21:37:58 -
Received: from sunu450.rz.ruhr-uni-bochum.de (134.147.64.5)
  by master.debian.org with SMTP; 2 Mar 2000 21:37:58 -
Received: (qmail 11281 invoked from network); 2 Mar 2000 21:37:58 -
Received: from dialppp-7-183.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 2 Mar 2000 21:37:58 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
for [EMAIL PROTECTED]
id 12Qd8J-0003rq-00; Thu, 02 Mar 2000 22:27:43 +0100
Date: Thu, 2 Mar 2000 22:27:42 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: [[EMAIL PROTECTED]: weak assertions in libstore/rdwr.c]
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home

Package: hurd
Version: 2000/03/01

An unattended bug reoprt on help-hurd.

Thanks,
Marcus

- Forwarded message from Kalle Olavi Niemitalo <[EMAIL PROTECTED]> -

Delivered-To: [EMAIL PROTECTED]
Resent-Date: Wed, 13 Oct 1999 10:52:29 -0400
To: [EMAIL PROTECTED]
Subject: weak assertions in libstore/rdwr.c
X-URL: http://stekt.oulu.fi/~tosi/
From: Kalle Olavi Niemitalo <[EMAIL PROTECTED]>
Date: 13 Oct 1999 20:17:24 +0300
Resent-Message-ID: <"MiOxO1.0.0n4.Rl91u"@mescaline.gnu.org>
Resent-From: [EMAIL PROTECTED]
X-Mailing-List: <[EMAIL PROTECTED]> archive/latest/1122
X-Loop: [EMAIL PROTECTED]
Precedence: list
Resent-Sender: [EMAIL PROTECTED]
X-UIDL: 5864b146d9f60681d5a46299a702fa78
Resent-Bcc:

The assertions in hurd-19991004/libstore/rdwr.c look suspicious:

  assert ((len & (block_shift - 1)) == 0);  /* in store_write */
  assert ((amount & (block_shift - 1)) == 0);   /* in store_read */

block_shift is initialized from store->log2_block_size, so it is
the number of bits to be shifted.  However the assertions use it
as a bitmask.  I believe they should be changed to:

  assert ((len & ((1 << block_shift) - 1)) == 0);
  assert ((amount & ((1 << block_shift) - 1)) == 0);

if their purpose is to ensure that the bits shifted out in
(len >> block_shift) and (amount >> block_shift) are all clear.

This error doesn't cause the functions to malfunction unless
block_shift == 0, which it probably isn't.



- End forwarded message -

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org Check Key server 
Marcus Brinkmann  GNUhttp://www.gnu.orgfor public PGP Key 
[EMAIL PROTECTED], [EMAIL PROTECTED]PGP Key ID 36E7CD09
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/   [EMAIL PROTECTED]
---
Received: (at 59471-done) by bugs.debian.org; 3 Mar 2000 02:24:50 +
Received: (qmail 8921 invoked from network); 3 Mar 2000 02:24:49 -
Received: from r85aap012887.sbo-smr.ma.cable.rcn.com (HELO frob.com) (209.6.192.195)
  by master.debian.org with SMTP; 3 Mar 2000 02:24:49 -
Received: (from roland@localhost)
by frob.com (8.9.1/8.9.1) id VAA28208;
Thu, 2 Mar 2000 21:24:48 -0500
Date: Thu, 2 Mar 2000 21:24:48 -0500
Message-Id: <[EMAIL PROTECTED]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
From: Roland McGrath <[EMAIL PROTECTED]>
To: Marcus Brinkmann <[EMAIL PROTECTED]>,
[EMAIL PROTECTED]
Subject: Re: Bug#59471: [[EMAIL PROTECTED]: weak assertions in libstore/rdwr.c]
In-Reply-To: Marcus Brinkmann's message of  Thu, 2 March 2000 22:27:42 +0100 
<[EMAIL PROTECTED]>
Emacs: (setq software-quality (/ 1 number-of-authors))

Please note this change in libstore/ChangeLog:

1999-10-07  Roland McGrath  <[EMAIL PROTECTED]>

* rdwr.c (store_read, store_write): Fix asserts in last change.

I'm closing this report.



Bug#54148: marked as done (hurd: new gcc can't compile pfinet)

2000-03-12 Thread Debian Bug Tracking System

Your message dated Sun, 12 Mar 2000 03:56:15 -0500
with message-id <[EMAIL PROTECTED]>
and subject line pfinet overhauled
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 5 Jan 2000 20:28:52 +
Received: (qmail 26372 invoked from network); 5 Jan 2000 20:28:51 -
Received: from sunu450.rz.ruhr-uni-bochum.de (134.147.64.5)
  by master.debian.org with SMTP; 5 Jan 2000 20:28:51 -
Received: (qmail 9911 invoked from network); 5 Jan 2000 20:28:51 -
Received: from dialppp-3-245.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 5 Jan 2000 20:28:51 -
Received: from marcus by localhost with local (Exim 3.11 #1 (Debian))
id 125x1Z-0001RR-00; Wed, 05 Jan 2000 21:27:17 +0100
From: [EMAIL PROTECTED]
Subject: hurd: new gcc can't compile pfinet
To: [EMAIL PROTECTED]
X-Mailer: bug 3.2.7
Message-Id: 
Date: Wed, 05 Jan 2000 21:27:17 +0100
Organization: Marcus Brinkmann's Home

Package: hurd
Version: N/A
Severity: normal

Hi,

the new gcc can't compile pfinet anymore. Fixing this would be great, as
otherwise I can't cross compile the Hurd anymore. I will try a native
compilation, but at one time we will upgrade anyway.

I tried to backpatch from newer linux versions, but too much has changed.

Thanks,
Marcus

marcus@ulysses[127]:~/gnu/hurd/hurd/hurd-2103/build/pfinet$ make -k no_prof=t
set -e; i386-gnu-gcc -O  -Wall -g -O3  -I. -I../../pfinet -I.. -I../.. -I../../include 
-D_GNU_SOURCE  -imacros ../../pfinet/config.h -M -MG ../../pfinet/linux-inet/ip.c  | 
sed > ip.d.new -e 's/ip\.o:/ip.o ip_pic.o ip_p.o ip.d:/' -e 's% [^ ]*/gcc-lib/[^ 
]*\.h%%g'
mv -f ip.d.new ip.d
i386-gnu-gcc -O  -Wall -g -O3  -I. -I../../pfinet -I.. -I../.. -I../../include 
-D_GNU_SOURCE  -imacros ../../pfinet/config.h  -c -o ip.o ../../pfinet/linux-inet/ip.c
../../pfinet/linux-inet/ip.c: In function `ip_compute_csum':
../../pfinet/linux-inet/ip.c:523: Invalid `asm' statement:
../../pfinet/linux-inet/ip.c:523: fixed or forbidden register 2 (cx) was spilled for 
class CREG.
../../pfinet/linux-inet/ip.c:532: Invalid `asm' statement:
../../pfinet/linux-inet/ip.c:532: fixed or forbidden register 3 (bx) was spilled for 
class BREG.
../../pfinet/linux-inet/ip.c:542: Invalid `asm' statement:
../../pfinet/linux-inet/ip.c:542: fixed or forbidden register 3 (bx) was spilled for 
class BREG.
make: *** [ip.o] Error 1

i386-gnu-gcc -O  -Wall -g -O3  -I. -I../../pfinet -I.. -I../.. -I../../include 
-D_GNU_SOURCE  -imacros ../../pfinet/config.h  -c -o tcp.o 
../../pfinet/linux-inet/tcp.c
../../pfinet/linux-inet/tcp.c: In function `tcp_send_check':
../../pfinet/linux-inet/tcp.c:1025: warning: implicit declaration of function 
`tcp_check'
../../pfinet/linux-inet/tcp.c: At top level:
../../pfinet/linux-inet/tcp.c:5044: warning: type mismatch with previous implicit 
declaration
../../pfinet/linux-inet/tcp.c:4488: warning: previous implicit declaration of 
`tcp_check'
../../pfinet/linux-inet/tcp.c:5044: warning: `tcp_check' was previously implicitly 
declared to return `int'
../../pfinet/linux-inet/tcp.c: In function `tcp_check':
../../pfinet/linux-inet/tcp.c:5061: Invalid `asm' statement:
../../pfinet/linux-inet/tcp.c:5061: fixed or forbidden register 1 (dx) was spilled for 
class DREG.
../../pfinet/linux-inet/tcp.c:5115: Invalid `asm' statement:
../../pfinet/linux-inet/tcp.c:5115: fixed or forbidden register 2 (cx) was spilled for 
class CREG.
make: *** [tcp.o] Error 1

i386-gnu-gcc -O  -Wall -g -O3  -I. -I../../pfinet -I.. -I../.. -I../../include 
-D_GNU_SOURCE  -imacros ../../pfinet/config.h  -c -o udp.o 
../../pfinet/linux-inet/udp.c
../../pfinet/linux-inet/udp.c: In function `udp_err':
../../pfinet/linux-inet/udp.c:119: warning: suggest parentheses around comparison in 
operand of &
../../pfinet/linux-inet/udp.c: In function `udp_send_check':
../../pfinet/linux-inet/udp.c:168: warning: implicit declaration of function 
`udp_check'
../../pfinet/linux-inet/udp.c: In function `udp_rcv':
../../pfinet/linux-inet/udp.c:537: warning: long unsigned int format, unsigned int arg 
(arg 2)
../../pfinet/linux-inet/udp.c:537: warning: long unsigned int format, unsigned int arg 
(arg 4)
../../pfinet/linux-inet/udp.c: At top level:
../../pfinet/linux-inet/udp.c:671: warning: `udp_check' was declared implicitly 
`extern' and later `static'
../../pfinet/linux-inet/udp.c:530: warning: previous declaration of `udp_check'
../../pfinet/linux-inet/udp.c:671: warning: type mismatch with previous implici

Bug#59433: marked as done (hurd: group permission not honoured)

2000-04-01 Thread Debian Bug Tracking System

Your message dated Sat, 1 Apr 2000 16:23:45 +0200
with message-id <[EMAIL PROTECTED]>
and subject line foo
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 2 Mar 2000 16:05:41 +
Received: (qmail 11592 invoked from network); 2 Mar 2000 16:05:40 -
Received: from sunu450.rz.ruhr-uni-bochum.de (134.147.64.5)
  by master.debian.org with SMTP; 2 Mar 2000 16:05:40 -
Received: (qmail 29320 invoked from network); 2 Mar 2000 16:05:41 -
Received: from unknown (HELO ulysses.alg.ruhr-uni-bochum.de) ([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 2 Mar 2000 16:05:41 -
Received: from marcus by ulysses.alg.ruhr-uni-bochum.de with local (Exim 3.12 #1 
(Debian))
id 12QYBF-5g-00; Thu, 02 Mar 2000 17:10:25 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
Subject: hurd: group permission not honoured
To: [EMAIL PROTECTED]
X-Mailer: bug 3.2.10
Message-Id: <[EMAIL PROTECTED]>
Date: Thu, 02 Mar 2000 17:10:25 +0100

Package: hurd
Version: N/A
Severity: normal

Hi,

As root:
# echo do not see > /tmp/secret
# chgrp marcus /tmp/secret
# chmod go-r /tmp/secret

Now /tmp/secret looks like this:
-rw--- root marcus tmp/secret

Now login as marcus, who belongs to group marcus and nothing else.
$ cat /tmp/secret
do not see

This might also be a glibc bug, I dunno.

Thanks,
Marcus

-- System Information
Debian Release: woody
Kernel Version: Linux ulysses 2.2.13 #1 Sat Nov 20 12:44:19 EST 1999 i586 unknown

---
Received: (at 59433-done) by bugs.debian.org; 1 Apr 2000 14:24:14 +
Received: (qmail 29393 invoked from network); 1 Apr 2000 14:24:13 -
Received: from sunu450.rz.ruhr-uni-bochum.de (134.147.64.5)
  by master.debian.org with SMTP; 1 Apr 2000 14:24:13 -
Received: (qmail 26725 invoked from network); 1 Apr 2000 14:24:12 -
Received: from dialppp-3-142.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 1 Apr 2000 14:24:12 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
for [EMAIL PROTECTED]
id 12bOoT-0003hI-00; Sat, 01 Apr 2000 16:23:45 +0200
Date: Sat, 1 Apr 2000 16:23:45 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: foo
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home

done

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org Check Key server 
Marcus Brinkmann  GNUhttp://www.gnu.orgfor public PGP Key 
[EMAIL PROTECTED], [EMAIL PROTECTED]PGP Key ID 36E7CD09
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/   [EMAIL PROTECTED]




Bug#62328: marked as done (unexpected error in __fork)

2000-04-13 Thread Debian Bug Tracking System

Your message dated Fri, 14 Apr 2000 00:54:24 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bug#62328: unexpected error in __fork
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 13 Apr 2000 17:03:46 +
Received: (qmail 26202 invoked from network); 13 Apr 2000 17:03:46 -
Received: from sunu450.rz.ruhr-uni-bochum.de (134.147.64.5)
  by master.debian.org with SMTP; 13 Apr 2000 17:03:46 -
Received: (qmail 10141 invoked from network); 13 Apr 2000 17:03:44 -
Received: from unknown (HELO ulysses.alg.ruhr-uni-bochum.de) ([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 13 Apr 2000 17:03:44 -
Received: from marcus by ulysses.alg.ruhr-uni-bochum.de with local (Exim 3.12 #1 
(Debian))
id 12fn1r-Ms-00
for <[EMAIL PROTECTED]>; Thu, 13 Apr 2000 19:03:43 +0200
Date: Thu, 13 Apr 2000 19:03:43 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: unexpected error in __fork
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i

Package: hurd
Version: N/A

Hi,

I sometimes see this when compiling packages, followed by a crash and
reboot. I can't see the console messages leading to this crash, maybe
someone else or me can follow up later with more information.

perl: ../sysdeps/mach/hurd/fork.c:158: __fork: Nicht erwarteter Fehler: (ipc/send) 
invalid destination port.

(Nicht erwarteter Fehler: Unexpected Error).

Thanks,
Marcus

---
Received: (at 62328-done) by bugs.debian.org; 13 Apr 2000 22:55:03 +
Received: (qmail 28076 invoked from network); 13 Apr 2000 22:55:02 -
Received: from sunu450.rz.ruhr-uni-bochum.de (134.147.64.5)
  by master.debian.org with SMTP; 13 Apr 2000 22:55:02 -
Received: (qmail 27323 invoked from network); 13 Apr 2000 22:55:00 -
Received: from dialppp-5-86.rz.ruhr-uni-bochum.de (HELO localhost) ([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 13 Apr 2000 22:55:00 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
id 12fsVE-j2-00; Fri, 14 Apr 2000 00:54:24 +0200
Date: Fri, 14 Apr 2000 00:54:24 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: Mark Kettenis <[EMAIL PROTECTED]>
Cc: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Re: Bug#62328: unexpected error in __fork
Message-ID: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]> 
<[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
In-Reply-To: <[EMAIL PROTECTED]>; from 
[EMAIL PROTECTED] on Thu, Apr 13, 2000 at 09:26:38PM +0200
Organization: Marcus Brinkmann's Home

On Thu, Apr 13, 2000 at 09:26:38PM +0200, Mark Kettenis wrote:
> 
> Time to upgrade your Hurd!  We fixed this bug last month :-)

Hey :) I should have checked the archive. I had vague memories on something
looking like this and coming from you.

Thanks a lot, I close the report. I will try to get updated packages in the
archive rather soon.

Thanks,
Marcus
 
-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org Check Key server 
Marcus Brinkmann  GNUhttp://www.gnu.orgfor public PGP Key 
[EMAIL PROTECTED], [EMAIL PROTECTED]PGP Key ID 36E7CD09
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/   [EMAIL PROTECTED]




Bug#46977: marked as done (gnumach: debian diff update)

2000-04-28 Thread Debian Bug Tracking System

Your message dated Fri, 28 Apr 2000 23:12:16 +0200
with message-id <[EMAIL PROTECTED]>
and subject line fixed
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 8 Oct 1999 22:28:27 +
Received: (qmail 26768 invoked from network); 8 Oct 1999 22:28:26 -
Received: from sunu450.rz.ruhr-uni-bochum.de (134.147.222.33)
  by master.debian.org with SMTP; 8 Oct 1999 22:28:26 -
Received: (qmail 2278 invoked from network); 8 Oct 1999 22:27:37 -
Received: from dialppp-5-142.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 8 Oct 1999 22:27:37 -
Received: from marcus by localhost with local (Exim 3.03 #1 (Debian))
id 11ZiAz-R4-00; Sat, 09 Oct 1999 00:07:45 +0200
From: [EMAIL PROTECTED]
Subject: gnumach: debian diff update
To: [EMAIL PROTECTED]
X-Mailer: bug 3.2.4
Message-Id: 
Date: Sat, 09 Oct 1999 00:07:45 +0200
Organization: Marcus Brinkmann's Home

Package: gnumach
Version: N/A
Severity: normal

Hi,

please update the Debian directory with the below diff, so we get back in
sync a bit again.

Thanks,
Marcus

diff -ru /mnt/marcus/gnu/cvs/gnumach/debian/changelog debian/changelog
--- /mnt/marcus/gnu/cvs/gnumach/debian/changelogMon Feb 22 11:48:22 1999
+++ debian/changelogWed Sep  8 00:33:52 1999
@@ -1,3 +1,50 @@
+gnumach (1:1.2-2) unstable; urgency=low
+
+  * Snapshot from CVS 19990907.
+  * Reenable all network interfaces, because the problem is fixed.
+  * Gzip gnumach binary.
+
+ -- Marcus Brinkmann <[EMAIL PROTECTED]>  Wed,  8 Sep 1999 00:15:39 +0200
+
+gnumach (1:1.2-1) unstable; urgency=low
+
+  * Snapshot from CVS 19990725.
+  * Start from official 1.2 release.
+  * Remove some network card drivers that seem to have no autodetection in
+order to get a maximum set of cards enabled that allows GNU Mach to detect
+at least one.
+
+ -- Marcus Brinkmann <[EMAIL PROTECTED]>  Mon, 26 Jul 1999 01:31:31 +0200
+
+gnumach (1:1.1.92-5) unstable; urgency=low
+
+  * Snapshot from CVS 19990616.
+  * Marks dummy network driver still there.
+
+ -- Marcus Brinkmann <[EMAIL PROTECTED]>  Thu, 17 Jun 1999 16:53:50 +0200
+
+gnumach (1:1.1.92-4) unstable; urgency=low
+
+  * Snapshot from CVS 19990602.
+  * Marks dummy network driver still there.
+  * Replaced linux/dev/drivers/block/genhd.c to avoid a bug.
+
+ -- Marcus Brinkmann <[EMAIL PROTECTED]>  Sat,  5 Jun 1999 00:59:43 +0200
+
+gnumach (1:1.1.92-2) unstable; urgency=low
+
+  * Snapshot from CVS 19990524.
+  * Applied Marks dummy network driver.
+  * Enabled thousands more devices.
+
+ -- Marcus Brinkmann <[EMAIL PROTECTED]>  Mon, 24 May 1999 18:00:19 +0200
+
+gnumach (1:1.1.92-1) unstable; urgency=low
+
+  * Snapshot from CVS 19990507.
+
+ -- Marcus Brinkmann <[EMAIL PROTECTED]>  Fri,  7 May 1999 20:46:06 +0200
+
 gnumach (1:1.1.90-2) unstable; urgency=low
 
   * Fix package administration information to reflect that maintainership
diff -ru /mnt/marcus/gnu/cvs/gnumach/debian/rules debian/rules
--- /mnt/marcus/gnu/cvs/gnumach/debian/rulesMon Feb 22 11:48:24 1999
+++ debian/rulesWed Sep  8 00:34:13 1999
@@ -53,24 +53,87 @@
 stamp-configure:
$(checkdir)
-mkdir build
+   # disabled:
+   # ncr5380, ncr53c400, ncr53c8xx, ncr53c406a
+   # hpj2577, hpj2573, hp27248b, hp2585, atp
cd build && ../configure \
-   --enable-com --enable-floppy --enable-ide --enable-lpr \
-   --enable-advansys --enable-buslogic --enable-u1434f --enable-ultrastor \
-   --enable-aha152x --enable-aha1542 --enable-aha1740 --enable-aic7xxx \
-   --enable-futuredomain --enable-in2000 \
-   --enable-ne2000 --enable-3c503 --enable-el2 \
-   --enable-3c509 --enable-el3 --enable-wd80x3 --enable-3c501 --enable-el1 \
-   --enable-ul --enable-hplanplus --enable-hplan --enable-3c59x --enable-vortex \
-   --enable-seeq8005 --enable-hp100 --enable-hpj2577 --enable-hpj2573 \
-   --enable-hp27248b --enable-hp2585 --enable-ac3200 --enable-e2100 \
-   --enable-at1700 --enable-eth16i --enable-eth32 --enable-znet --enable-znote \
-   --enable-eexpress --enable-eexpresspro --enable-depca --enable-de100 \
-   --enable-de101 --enable-de200 --enable-de201 --enable-de202 --enable-de210 \
-   --enable-de422 --enable-ewrk3 --enable-de203 --enable-de204 --enable-de205 \
-   --enable-de4x5 --enable-de425 --enable-de434 --enable-de500 --enable-apricot \
-   --enable-wavelan --enable-3c507 --enable-el16 --enable-3c505 --enable-

Processed: hurd bugs

2000-04-28 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> close 62817
Bug#62817: doc generation fails
Bug is already closed, cannot re-close.

> merge 58155 60807
Bug#58155: fgetpos failed
Bug#60807: [[EMAIL PROTECTED]: Reporting some bugs]
Merged 58155 60807.

> --
Stopping processing here.

Please contact me if you need assistance.

Darren Benham
(administrator, Debian Bugs database)




Bug#63723: marked as done (hurd: suspicious code in ext2fs/pager.c)

2000-05-09 Thread Debian Bug Tracking System

Your message dated Tue, 9 May 2000 17:38:28 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bug#63723: hurd: suspicious code in ext2fs/pager.c
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 7 May 2000 17:00:56 +
Received: (qmail 25337 invoked from network); 7 May 2000 17:00:54 -
Received: from sunu450.rz.ruhr-uni-bochum.de (134.147.64.5)
  by master.debian.org with SMTP; 7 May 2000 17:00:54 -
Received: (qmail 8087 invoked from network); 7 May 2000 17:01:00 -
Received: from dialppp-3-245.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 7 May 2000 17:01:00 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
id 12oUMi-Sz-00; Sun, 07 May 2000 18:57:12 +0200
From: [EMAIL PROTECTED]
Subject: hurd: suspicious code in ext2fs/pager.c
To: [EMAIL PROTECTED]
X-Mailer: bug 3.2.9
Message-Id: 
Date: Sun, 07 May 2000 18:57:12 +0200
Organization: Marcus Brinkmann's Home

Package: hurd
Version: N/A
Severity: normal

Hi,

again, I have no test case for this report, but only analysis of the code.
I am sure *if* it can occur, it is quite rare, so it's not urgent.

In ext2fs/pager.c (diskfs_grow), it seems that a file could shrink by one
block. Assume new_end_block > end_block, and
dn->last_page_partially_writable, and old_page_end_block > end_block,
AND diskfs_catch_exceptions fails (this is a rather strong assumption, I
don't know under which circumstances it might happen).

  err = diskfs_catch_exception ();
  while (!err && end_block < writable_end)
{
  block_t disk_block;
  err = ext2_getblk (node, end_block++, 1, &disk_block);
}
  diskfs_end_catch_exception ();

  if (err)
/* Reflect how much we allocated successfully.  */
new_size = (end_block - 1) << log2_block_size;

The while loop is not entered, because of ERR. This means that end_block is
still old_size >> log2_block_size. So, because ERR is true, new_size is set to
   (end_block - 1) << log2_block_size
== ((old_size >> log2_block_size) - 1) << log2_block_size
== old_size - block_size
   (or something worse if old_size < block_size and an underrun occurred).

The "- 1", which is meant to take care of the additional end_block++ in the
body of the while loop, is harmful here.

Thanks,
Marcus

-- System Information
Debian Release: woody
Kernel Version: Linux ulysses 2.2.12 #7 Mon Sep 27 01:09:52 CEST 1999 i586 unknown

---
Received: (at 63723-done) by bugs.debian.org; 9 May 2000 15:40:00 +
>From [EMAIL PROTECTED] Tue May 09 10:40:00 2000
Received: from sunu450.rz.ruhr-uni-bochum.de [134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 #2 (Debian))
id 12pC75-0003kp-00; Tue, 09 May 2000 10:40:00 -0500
Received: (qmail 10021 invoked from network); 9 May 2000 15:40:02 -
Received: from dialppp-7-85.rz.ruhr-uni-bochum.de (HELO localhost) ([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 9 May 2000 15:40:02 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
id 12pC5c-VS-00; Tue, 09 May 2000 17:38:29 +0200
Date: Tue, 9 May 2000 17:38:28 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: Kalle Olavi Niemitalo <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
Subject: Re: Bug#63723: hurd: suspicious code in ext2fs/pager.c
Message-ID: <[EMAIL PROTECTED]>
References:  <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
In-Reply-To: <[EMAIL PROTECTED]>; from [EMAIL PROTECTED] on Mon, 
May 08, 2000 at 08:52:04AM +0300
Organization: Marcus Brinkmann's Home

On Mon, May 08, 2000 at 08:52:04AM +0300, Kalle Olavi Niemitalo wrote:
> [EMAIL PROTECTED] writes:
> 
> > AND diskfs_catch_exceptions fails (this is a rather strong assumption, I
> > don't know under which circumstances it might happen).
> 
> diskfs_catch_exception takes its return value from setjmp() so it
> can't fail when it first returns.
> 
> It can return a nonzero value later if there's a fault between
> diskfs_catch_exception and diskfs_end_catch_exception.  It seems
> the fault could only happen in ext2_getblk.  When that is called,
> end_block has already been incremented.  So the code is safe.

You are right. 

Bug#64110: marked as done (hurd: defualt sync interval in help output wrong)

2000-05-14 Thread Debian Bug Tracking System

Your message dated Sun, 14 May 2000 22:36:28 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bug#64110: hurd: default sync interval in help output wrong
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 14 May 2000 18:45:09 +
>From [EMAIL PROTECTED] Sun May 14 13:45:09 2000
Received: from sunu450.rz.ruhr-uni-bochum.de [134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 #2 (Debian))
id 12r3O0-0006mG-00; Sun, 14 May 2000 13:45:08 -0500
Received: (qmail 24695 invoked from network); 14 May 2000 18:45:17 -
Received: from dialppp-7-147.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 14 May 2000 18:45:17 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
id 12r3Mg-8u-00; Sun, 14 May 2000 20:43:46 +0200
From: [EMAIL PROTECTED]
Subject: hurd: defualt sync interval in help output wrong
To: [EMAIL PROTECTED]
X-Mailer: bug 3.2.9
Message-Id: 
Date: Sun, 14 May 2000 20:43:46 +0200
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

Package: hurd
Version: N/A
Severity: normal

Hi,

in libdiskfs/sync-default.c, the default sync interval is set to 5 seconds,
but opts-common.c has:

  {"sync", 's', "INTERVAL", OPTION_ARG_OPTIONAL,
 "If INTERVAL is supplied, sync all data not actually written to disk"
 " every INTERVAL seconds, otherwise operate in synchronous mode (the"
 " default is to sync every 30 seconds)"},

Which says 30 seconds.

Thanks,
Marcus

-- System Information
Debian Release: woody
Kernel Version: Linux ulysses 2.2.12 #7 Mon Sep 27 01:09:52 CEST 1999 i586 unknown


---
Received: (at 64110-done) by bugs.debian.org; 14 May 2000 20:36:47 +
>From [EMAIL PROTECTED] Sun May 14 15:36:47 2000
Received: from sunu450.rz.ruhr-uni-bochum.de [134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 #2 (Debian))
id 12r582-0004Bh-00; Sun, 14 May 2000 15:36:47 -0500
Received: (qmail 5335 invoked from network); 14 May 2000 20:36:55 -
Received: from dialppp-3-203.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 14 May 2000 20:36:55 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
for [EMAIL PROTECTED]
id 12r57l-xe-00; Sun, 14 May 2000 22:36:29 +0200
Date: Sun, 14 May 2000 22:36:28 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: Bug#64110: hurd: default sync interval in help output wrong
Message-ID: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]> 
<[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
In-Reply-To: <[EMAIL PROTECTED]>; from [EMAIL PROTECTED] on 
Sun, May 14, 2000 at 04:04:34PM -0400
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

On Sun, May 14, 2000 at 04:04:34PM -0400, Roland McGrath wrote:
> Looks ok to me.  Assuming it actually compiles and the output looks right,
> then check it in and close the bug.

It does, thanks.
Marcus 

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org Check Key server 
Marcus Brinkmann  GNUhttp://www.gnu.orgfor public PGP Key 
[EMAIL PROTECTED], [EMAIL PROTECTED]PGP Key ID 36E7CD09
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/   [EMAIL PROTECTED]




Bug#63262: marked as done (hurd: diskfs translators don't check for bootstrap port correctly)

2000-05-14 Thread Debian Bug Tracking System

Your message dated Sun, 14 May 2000 21:46:23 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bug#63262: fix looks ok
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 29 Apr 2000 14:25:43 +
Received: (qmail 2963 invoked from network); 29 Apr 2000 14:25:42 -
Received: from sunu450.rz.ruhr-uni-bochum.de (134.147.64.5)
  by master.debian.org with SMTP; 29 Apr 2000 14:25:42 -
Received: (qmail 25756 invoked from network); 29 Apr 2000 14:25:45 -
Received: from dialppp-7-131.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 29 Apr 2000 14:25:45 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
id 12lYB3-9h-00; Sat, 29 Apr 2000 16:25:01 +0200
From: [EMAIL PROTECTED]
Subject: hurd: diskfs translators don't check for bootstrap port correctly
To: [EMAIL PROTECTED]
X-Mailer: bug 3.2.9
Message-Id: 
Date: Sat, 29 Apr 2000 16:25:01 +0200
Organization: Marcus Brinkmann's Home

Package: hurd
Version: N/A
Severity: normal

Hi,

"/hurd/ext2fs /dev/hd2s6" segfaults, because libdiskfs/init-main.c doesn't
check correctly for the bootstrap point.

The below patch corrects this problem.

Thanks,
Marcus

diff -ru /mnt/marcus/gnu/cvs/hurd/libdiskfs/ChangeLog libdiskfs/ChangeLog
--- /mnt/marcus/gnu/cvs/hurd/libdiskfs/ChangeLogSat Mar 18 19:37:13 2000
+++ libdiskfs/ChangeLog Sat Apr 29 16:21:36 2000
@@ -1,3 +1,8 @@
+2000-04-29  Marcus Brinkmann  <[EMAIL PROTECTED]>
+
+   * init-main.c (diskfs_init_main): Dereference BOOTSTRAP before
+   checking for MACH_PORT_NULL.
+
 2000-03-17  Roland McGrath  <[EMAIL PROTECTED]>
 
* file-exec.c (diskfs_S_file_exec): Fix typo and braino in last change.
diff -ru /mnt/marcus/gnu/cvs/hurd/libdiskfs/init-main.c libdiskfs/init-main.c
--- /mnt/marcus/gnu/cvs/hurd/libdiskfs/init-main.c  Sun Jan 24 03:41:57 1999
+++ libdiskfs/init-main.c   Sat Apr 29 16:20:40 2000
@@ -54,7 +54,7 @@
   else
 {
   task_get_bootstrap_port (mach_task_self (), bootstrap);
-  if (bootstrap == MACH_PORT_NULL)
+  if (*bootstrap == MACH_PORT_NULL)
error (2, 0, "Must be started as a translator");
 }
 

-- System Information
Debian Release: woody
Kernel Version: Linux ulysses 2.2.12 #7 Mon Sep 27 01:09:52 CEST 1999 i586 unknown

---
Received: (at 63262-done) by bugs.debian.org; 14 May 2000 19:46:38 +
>From [EMAIL PROTECTED] Sun May 14 14:46:38 2000
Received: from sunu450.rz.ruhr-uni-bochum.de [134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 #2 (Debian))
id 12r4LW-0002C8-00; Sun, 14 May 2000 14:46:38 -0500
Received: (qmail 16880 invoked from network); 14 May 2000 19:46:46 -
Received: from dialppp-7-68.rz.ruhr-uni-bochum.de (HELO localhost) ([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 14 May 2000 19:46:46 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
for [EMAIL PROTECTED]
id 12r4LH-XB-00; Sun, 14 May 2000 21:46:23 +0200
Date: Sun, 14 May 2000 21:46:23 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: Bug#63262: fix looks ok
Message-ID: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
In-Reply-To: <[EMAIL PROTECTED]>; from [EMAIL PROTECTED] on 
Sun, May 14, 2000 at 03:09:53PM -0400
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

On Sun, May 14, 2000 at 03:09:53PM -0400, Roland McGrath wrote:
> Marcus, please check in your patch and close the bug.

Done, thanks.

Marcus 

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org Check Key server 
Marcus Brinkmann  GNUhttp://www.gnu.orgfor public PGP Key 
[EMAIL PROTECTED], [EMAIL PROTECTED]PGP Key ID 36E7CD09
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/   [EMAIL PROTECTED]




Bug#58155: marked as done (fgetpos failed)

2000-07-18 Thread Debian Bug Tracking System

Your message dated Wed, 19 Jul 2000 00:01:10 +0200
with message-id <[EMAIL PROTECTED]>
and subject line cleaning up
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 15 Feb 2000 14:35:38 +
Received: (qmail 7981 invoked from network); 15 Feb 2000 14:35:38 -
Received: from unknown (HELO myrealbox.com) (192.108.102.201)
  by master.debian.org with SMTP; 15 Feb 2000 14:35:38 -
Received: from lehto [194.197.66.66] by myrealbox.com
with Novonyx SMTP Server $Revision:   2.25  $; Tue, 15 Feb 2000 07:35:32 -0700 
(MDT)
Message-Id: <[EMAIL PROTECTED]>
X-Sender: [EMAIL PROTECTED]
X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32)
Date: Tue, 15 Feb 2000 16:34:06 +0200
To: [EMAIL PROTECTED]
From: Juho =?iso-8859-1?Q?=D6stman?= <[EMAIL PROTECTED]>
Subject: fgetpos failed
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"

Package: hurd
Version: 2130

When I have tried to install Debian packages located on a filesystem
other than my root filesystem, There is an error saying:

dpkg-deb: fgetpos failed

And the installation was canceled. If I would copy the package into the root
filesystem first and then install it everything work OK.

That filesystem was mounted using the command:
settrans mnt /hurd/ext2fs -r /dev/hd2s7

The root filesystem is hd2s8 and its size is about 600 MB. The size of
hd2s7 is about 1,2 GB.


---
Received: (at 58155-done) by bugs.debian.org; 18 Jul 2000 22:05:42 +
>From [EMAIL PROTECTED] Tue Jul 18 17:05:42 2000
Return-path: <[EMAIL PROTECTED]>
Received: from sunu450.rz.ruhr-uni-bochum.de [134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 2 (Debian))
id 13EfUk-0007IH-00; Tue, 18 Jul 2000 17:05:42 -0500
Received: (qmail 74 invoked from network); 18 Jul 2000 22:05:40 -
Received: from dialppp-3-14.rz.ruhr-uni-bochum.de (HELO localhost) ([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 18 Jul 2000 22:05:40 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
id 13EfQM-8j-00; Wed, 19 Jul 2000 00:01:10 +0200
Date: Wed, 19 Jul 2000 00:01:10 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED]
Subject: cleaning up
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

Those reports were fixed by Thomas checkin of io-seek.c and Marks config/lib
handling resp.

Thanks,
Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org Check Key server 
Marcus Brinkmann  GNUhttp://www.gnu.orgfor public PGP Key 
[EMAIL PROTECTED], [EMAIL PROTECTED]PGP Key ID 36E7CD09
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/   [EMAIL PROTECTED]




Bug#60807: marked as done ([thomas.poindessous@epita.fr: Reporting some bugs])

2000-07-18 Thread Debian Bug Tracking System

Your message dated Wed, 19 Jul 2000 00:01:10 +0200
with message-id <[EMAIL PROTECTED]>
and subject line cleaning up
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 20 Mar 2000 17:12:47 +
Received: (qmail 2189 invoked from network); 20 Mar 2000 17:12:46 -
Received: from sunu450.rz.ruhr-uni-bochum.de (134.147.64.5)
  by master.debian.org with SMTP; 20 Mar 2000 17:12:46 -
Received: (qmail 4844 invoked from network); 20 Mar 2000 17:12:46 -
Received: from dialppp-5-63.rz.ruhr-uni-bochum.de (HELO localhost) ([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 20 Mar 2000 17:12:46 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
for [EMAIL PROTECTED]
id 12X5j8-S0-00; Mon, 20 Mar 2000 18:12:26 +0100
Date: Mon, 20 Mar 2000 18:12:26 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: [[EMAIL PROTECTED]: Reporting some bugs]
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home

Package: hurd
Version: 2000/03/20

From: thomas poindessous <[EMAIL PROTECTED]>

Ok, I have found others bugs/problems:
I tried to install a .deb from my cdrom, but I got this error:
~# dpkg -i lynx_2.8.2-2.deb
dpkg-deb: fgetpos failed
~# fsysopt /cdrom
/hurd/isofs --readonly --sync=5 /dev/hd2

Thanks,
Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org Check Key server 
Marcus Brinkmann  GNUhttp://www.gnu.orgfor public PGP Key 
[EMAIL PROTECTED], [EMAIL PROTECTED]PGP Key ID 36E7CD09
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/   [EMAIL PROTECTED]
---
Received: (at 58155-done) by bugs.debian.org; 18 Jul 2000 22:05:42 +
>From [EMAIL PROTECTED] Tue Jul 18 17:05:42 2000
Return-path: <[EMAIL PROTECTED]>
Received: from sunu450.rz.ruhr-uni-bochum.de [134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 2 (Debian))
id 13EfUk-0007IH-00; Tue, 18 Jul 2000 17:05:42 -0500
Received: (qmail 74 invoked from network); 18 Jul 2000 22:05:40 -
Received: from dialppp-3-14.rz.ruhr-uni-bochum.de (HELO localhost) ([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 18 Jul 2000 22:05:40 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
id 13EfQM-8j-00; Wed, 19 Jul 2000 00:01:10 +0200
Date: Wed, 19 Jul 2000 00:01:10 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED]
Subject: cleaning up
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

Those reports were fixed by Thomas checkin of io-seek.c and Marks config/lib
handling resp.

Thanks,
Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org Check Key server 
Marcus Brinkmann  GNUhttp://www.gnu.orgfor public PGP Key 
[EMAIL PROTECTED], [EMAIL PROTECTED]PGP Key ID 36E7CD09
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/   [EMAIL PROTECTED]




Bug#62816: marked as done (compilation failure)

2000-07-18 Thread Debian Bug Tracking System

Your message dated Wed, 19 Jul 2000 00:01:10 +0200
with message-id <[EMAIL PROTECTED]>
and subject line cleaning up
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 21 Apr 2000 21:21:39 +
Received: (qmail 23437 invoked from network); 21 Apr 2000 21:21:30 -
Received: from sunu450.rz.ruhr-uni-bochum.de (134.147.64.5)
  by master.debian.org with SMTP; 21 Apr 2000 21:21:30 -
Received: (qmail 5016 invoked from network); 21 Apr 2000 21:21:14 -
Received: from dialppp-3-75.rz.ruhr-uni-bochum.de (HELO localhost) ([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 21 Apr 2000 21:21:14 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
for [EMAIL PROTECTED]
id 12iklI-0001bo-00; Fri, 21 Apr 2000 23:14:52 +0200
Date: Fri, 21 Apr 2000 23:14:52 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: compilation failure
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home

Package: hurd
Version: N/A

Hi,

when compiling the Hurd, it failed:

i386-gnu-gcc 
-Wl,-rpath-link=.:../libdiskfs/:../libfshelp/:../libftpconn/:../libhurdbugaddr/:../libihash/:../libiohelp/:../libnetfs/:../libpager/:../libpipe/:../libports/:../libps/:../libshouldbeinlibc/:../libstore/:../libthreads/:../libtrivfs/
 -Wall -g -O3-uargp_program_bug_address -o console-run \
  console-run.o \
  '-Wl,-(' ../libhurdbugaddr/libhurdbugaddr.so ../libfshelp/libfshelp.so
../libports/libports.so \
 \
  '-Wl,-)'
../libfshelp/libfshelp.so: undefined reference to 
`hurd_condition_wait@@HURD_CTHREADS_0.3'
../libfshelp/libfshelp.so: undefined reference to `cond_broadcast@@HURD_CTHREADS_0.3'
../libfshelp/libfshelp.so: undefined reference to 
`__mutex_unlock_solid@@HURD_CTHREADS_0.3'
../libfshelp/libfshelp.so: undefined reference to 
`__mutex_lock_solid@@HURD_CTHREADS_0.3'
collect2: ld returned 1 exit status
make[2]: *** [console-run] Error 1
make[2]: Leaving directory /mnt/marcus/gnu/hurd/hurd/hurd-2421/build/daemons'
make[1]: *** [daemons] Error 2
make[1]: Leaving directory /mnt/marcus/gnu/hurd/hurd/hurd-2421/build'
make: *** [stamp-build] Error 2

I suspect a missing mentioning of the threads lib in the dameons/Makefile.
Only after removing the installed libthreads, which comes from an old hurd
version, it used the freshly built threads lib and everything went okay.

Thanks,
Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org Check Key server 
Marcus Brinkmann  GNUhttp://www.gnu.orgfor public PGP Key 
[EMAIL PROTECTED], [EMAIL PROTECTED]PGP Key ID 36E7CD09
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/   [EMAIL PROTECTED]
---
Received: (at 62816-done) by bugs.debian.org; 18 Jul 2000 22:05:43 +
>From [EMAIL PROTECTED] Tue Jul 18 17:05:43 2000
Return-path: <[EMAIL PROTECTED]>
Received: from sunu450.rz.ruhr-uni-bochum.de [134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 2 (Debian))
id 13EfUk-0007IJ-00; Tue, 18 Jul 2000 17:05:42 -0500
Received: (qmail 74 invoked from network); 18 Jul 2000 22:05:40 -
Received: from dialppp-3-14.rz.ruhr-uni-bochum.de (HELO localhost) ([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 18 Jul 2000 22:05:40 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
id 13EfQM-8j-00; Wed, 19 Jul 2000 00:01:10 +0200
Date: Wed, 19 Jul 2000 00:01:10 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED]
Subject: cleaning up
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

Those reports were fixed by Thomas checkin of io-seek.c and Marks config/lib
handling resp.

Thanks,
Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org Check Key server 
Marcus Brinkmann  GNUhttp://www.gnu.orgfor public PGP Key 
[EMAIL PROTECTED], [EMAIL PROTECTED]PGP Key ID 36E7CD09
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/   [EMAIL PROTECTED]




Bug#62557: marked as done ([patch] #! doubles first character of argument)

2000-07-20 Thread Debian Bug Tracking System

Your message dated Thu, 20 Jul 2000 23:56:37 +0200
with message-id <[EMAIL PROTECTED]>
and subject line done
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 17 Apr 2000 16:02:52 +
Received: (qmail 9036 invoked from network); 17 Apr 2000 16:02:50 -
Received: from m155m1oul.dial.kolumbus.fi (HELO PC486.Niemitalo.LAN) 
([EMAIL PROTECTED])
  by master.debian.org with SMTP; 17 Apr 2000 16:02:50 -
Received: from kalle by PC486.Niemitalo.LAN with local (Exim 3.12 #1 (Debian))
id 12hCwt-6T-00; Mon, 17 Apr 2000 17:56:27 +0300
To: [EMAIL PROTECTED]
Subject: [patch] #! doubles first character of argument
X-Accept-Language: fi;q=1.0, en;q=0.9, sv;q=0.5, de;q=0.1
X-URL: http://stekt.oulu.fi/~tosi/
X-Anagram: look vanilla, aim elite
From: Kalle Olavi Niemitalo <[EMAIL PROTECTED]>
Date: 17 Apr 2000 17:56:25 +0300
Message-ID: <[EMAIL PROTECTED]>
Lines: 48

Package: hurd
Version: CVS 2000-04-16
Severity: important

If the #! line of a script contains an argument for the
interpreter, the argument gets its first character doubled.  This
prevents installation of packages which use #!/bin/sh -e in their
maintainer scripts.

kalle@PC486:/tmp$ ls -l abc
-rwxrwxr-x1 kalleroot   16 Apr 17 17:16 abc
kalle@PC486:/tmp$ cat abc
#!/bin/echo def
kalle@PC486:/tmp$ ./abc
ddef ./abc

Here's the fix.  INTERP_LEN will still include the null because P
points to the character after the null.

--- hurd/exec/hashexec.c.orig   Mon Mar 20 08:57:44 2000
+++ hurd/exec/hashexec.cMon Apr 17 17:13:10 2000
@@ -178,7 +178,7 @@
 
   arg = p + strspn (p, " \t");
   arg_len = interp_len - 1 - (arg - interp_buf); /* without null here */
-  interp_len = p + 1 - interp; /* This one includes the null.  */
+  interp_len = p - interp; /* This one includes the null.  */
 
   if (arg_len == 0)
arg = NULL;

After installing the patched version and rebooting:

kalle@PC486:/tmp$ ls -l abc
-rwxrwxr-x1 kalleroot   16 Apr 17 17:24 abc
kalle@PC486:/tmp$ cat abc
#!/bin/echo def
kalle@PC486:/tmp$ ./abc
def ./abc

When I noticed the problem, I initially tried attaching gdb to
the exec server and setting breakpoints.  But when I told gdb to
continue, it said it was unable to wait for the process and soon
after that the exec server seemed to crash -- or perhaps it
stopped at the breakpoint but didn't tell gdb.

Is it possible to debug the primary exec server with gdb?
Or is it possible to run another exec server and debug that?
---
Received: (at 62557-done) by bugs.debian.org; 20 Jul 2000 22:01:11 +
>From [EMAIL PROTECTED] Thu Jul 20 17:01:11 2000
Return-path: <[EMAIL PROTECTED]>
Received: from sunu450.rz.ruhr-uni-bochum.de [134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 2 (Debian))
id 13FONS-0001ar-00; Thu, 20 Jul 2000 17:01:10 -0500
Received: (qmail 19880 invoked from network); 20 Jul 2000 22:01:09 -
Received: from dialppp-7-8.rz.ruhr-uni-bochum.de (HELO localhost) ([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 20 Jul 2000 22:01:09 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
for [EMAIL PROTECTED]
id 13FOJ3-Bm-00; Thu, 20 Jul 2000 23:56:37 +0200
Date: Thu, 20 Jul 2000 23:56:37 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: done
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

done

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org Check Key server 
Marcus Brinkmann  GNUhttp://www.gnu.orgfor public PGP Key 
[EMAIL PROTECTED], [EMAIL PROTECTED]PGP Key ID 36E7CD09
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/   [EMAIL PROTECTED]




Bug#67598: marked as done (gnumach 2.95.2 update)

2000-07-22 Thread Debian Bug Tracking System

Your message dated Sun, 23 Jul 2000 02:30:42 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bug#67598: gnumach 2.95.2 update
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 22 Jul 2000 20:47:39 +
>From [EMAIL PROTECTED] Sat Jul 22 15:47:39 2000
Return-path: <[EMAIL PROTECTED]>
Received: from sunu450.rz.ruhr-uni-bochum.de [134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 2 (Debian))
id 13G6BN-0001eE-00; Sat, 22 Jul 2000 15:47:38 -0500
Received: (qmail 23618 invoked from network); 22 Jul 2000 20:47:28 -
Received: from dialppp-1-242.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 22 Jul 2000 20:47:28 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
for [EMAIL PROTECTED]
id 13G66p-IV-00; Sat, 22 Jul 2000 22:42:55 +0200
Date: Sat, 22 Jul 2000 22:42:55 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: gnumach 2.95.2 update
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

Package: gnumach
Version: N/A

Hi,

the included patch makes gnumach ready for gcc 2.95.2, fixes some errors
and lets gnumach use the stdarg inetrface instead vararg. It is tested and
included in the latest Debian package. I verified that the ChangeLog entry
matches the patch content. Please check it in or ive me the okay to do it.

Thanks,
Marcus

2000-07-04  Marcus Brinkmann <[EMAIL PROTECTED]>

* debian/changelog: Add entry for new Debian upload.
* linux/dev/drivers/scsi/seagate.c (WRITE_CONTROL, WRITE_DATA):
Added from linux 2.2.15.
(__asm__ constructs): Replace with equivalent C code from linux 2.2.15
to support gcc-2.95.
* linux/src/drivers/scsi/in2000.h: Update asm code to linux 2.2.15.
* linux/src/drivers/scsi/ppa.c: Replace asm code with equivalent
C code from linux 2.2.15.

2000-02-06  Stefan Weil <[EMAIL PROTECTED]>

* device/subrs.c: Fixed compiler warning.
* ddb/db_output.c, kern/bootstrap.c, kern/debug.c, kern/printf.c:
Replaced varargs.h by stdarg.h. Fixed prototypes (const char *fmt).
* ddb/db_output.h: Use prototype for db_printf.
* i386/Files: removed varargs.h.
* i386/i386/pit.h: Fixed compiler warning.
* i386/i386at/model_dep.c: Tried to fix compiler warning.
* i386/include/mach/sa/sys/varargs.h: Removed.
* i386/linux/Makefile.in: Removed delay.S, added delay.c.
* linux/dev/include/asm-i386/segment.h: Support gcc-2.95.
* linux/dev/include/asm-i386/string.h,
linux/src/include/asm-i386/string.h: Update from linux-2.2.14.
* linux/dev/lib/vsprintf.c: Fixed compiler warning.
* linux/src/include/asm-i386/delay.h: Update from linux-2.2.14.
* linux/src/arch/i386/lib/delay.c: Copy from linux-2.2.14.
* linux/src/include/asm-i386/string.h: Update from linux-2.2.14.


diff -rNu -x CVS /mnt/marcus/gnu/cvs/gnumach/ddb/db_output.c gnumach/ddb/db_output.c
--- /mnt/marcus/gnu/cvs/gnumach/ddb/db_output.c Tue Feb 25 22:28:12 1997
+++ gnumach/ddb/db_output.c Mon Jul  3 23:02:58 2000
@@ -35,8 +35,8 @@
  * Printf and character output for debugger.
  */
 
+#include 
 #include 
-#include 
 #include 
 #include 
 #include 
@@ -209,16 +209,14 @@
 
 /*VARARGS1*/
 void
-db_printf( fmt, va_alist)
-   char *  fmt;
-   va_dcl
+db_printf(const char *fmt, ...)
 {
va_list listp;
 
 #ifdef db_printf_enter
db_printf_enter();  /* optional multiP serialization */
 #endif
-   va_start(listp);
+   va_start(listp, fmt);
_doprnt(fmt, &listp, db_id_putc, db_radix, 0);
va_end(listp);
 }
@@ -227,12 +225,10 @@
 
 /*VARARGS1*/
 void
-kdbprintf(fmt, va_alist)
-   char *  fmt;
-   va_dcl
+kdbprintf(const char *fmt, ...)
 {
va_list listp;
-   va_start(listp);
+   va_start(listp, fmt);
_doprnt(fmt, &listp, db_id_putc, db_radix, 0);
va_end(listp);
 }
diff -rNu -x CVS /mnt/marcus/gnu/cvs/gnumach/ddb/db_output.h gnumach/ddb/db_output.h
--- /mnt/marcus/gnu/cvs/gnumach/ddb/db_output.h Tue Feb 25 22:28:12 1997
+++ gnumach/ddb/db_output.h Mon Jul  3 23:02:58 2000
@@ -35,10 +35,6 @@
 extern voiddb_force_whitespace();
 extern int db_print_positi

Bug#63267: marked as done (hurd: portinfo option -h not recognized)

2000-07-27 Thread Debian Bug Tracking System

Your message dated 27 Jul 2000 16:00:07 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#63267: hurd: portinfo option -h not recognized
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 29 Apr 2000 15:23:00 +
Received: (qmail 15226 invoked from network); 29 Apr 2000 15:22:49 -
Received: from sunu450.rz.ruhr-uni-bochum.de (134.147.64.5)
  by master.debian.org with SMTP; 29 Apr 2000 15:22:48 -
Received: (qmail 21954 invoked from network); 29 Apr 2000 15:22:51 -
Received: from dialppp-5-1.rz.ruhr-uni-bochum.de (HELO localhost) ([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 29 Apr 2000 15:22:51 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
id 12lZ4J-5o-00; Sat, 29 Apr 2000 17:22:07 +0200
From: [EMAIL PROTECTED]
Subject: hurd: portinfo option -h not recognized
To: [EMAIL PROTECTED]
X-Mailer: bug 3.2.9
Message-Id: 
Date: Sat, 29 Apr 2000 17:22:07 +0200
Organization: Marcus Brinkmann's Home

Package: hurd
Version: N/A
Severity: normal

Hi,

the portinfo option -h (--show-targets) is not implemented in parse_opt.

Thanks,
Marcus

-- System Information
Debian Release: woody
Kernel Version: Linux ulysses 2.2.12 #7 Mon Sep 27 01:09:52 CEST 1999 i586 unknown

---
Received: (at 63267-done) by bugs.debian.org; 27 Jul 2000 20:00:16 +
>From [EMAIL PROTECTED] Thu Jul 27 15:00:16 2000
Return-path: <[EMAIL PROTECTED]>
Received: from pacific-carrier-annex.mit.edu (MIT.EDU) [18.69.0.28] 
by master.debian.org with smtp (Exim 3.12 2 (Debian))
id 13HtpG-0006fu-00; Thu, 27 Jul 2000 15:00:16 -0500
Received: from GRAND-CENTRAL-STATION.MIT.EDU by MIT.EDU with SMTP
id AA04983; Thu, 27 Jul 00 16:00:54 EDT
Received: from melbourne-city-street.MIT.EDU (MELBOURNE-CITY-STREET.MIT.EDU 
[18.69.0.45])
by grand-central-station.MIT.EDU (8.9.2/8.9.2) with ESMTP id QAA26975;
Thu, 27 Jul 2000 16:00:08 -0400 (EDT)
Received: from alice-whacker.mit.edu (ALICE-WHACKER.MIT.EDU [18.187.1.68])
by melbourne-city-street.MIT.EDU (8.9.3/8.9.2) with ESMTP id QAA14098;
Thu, 27 Jul 2000 16:00:07 -0400 (EDT)
Received: (from tb@localhost) by alice-whacker.mit.edu (8.9.3)
id QAA17323; Thu, 27 Jul 2000 16:00:07 -0400
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: Bug#63267: hurd: portinfo option -h not recognized
References: 
X-Pgp-Fingerprint: 1F0A1E51  63 28 EB DA E6 44 E5 5E  EC F3 04 26 4E BF 1A 92
From: [EMAIL PROTECTED] (Thomas Bushnell, BSG)
Date: 27 Jul 2000 16:00:07 -0400
In-Reply-To: [EMAIL PROTECTED]'s message of "Sat, 29 Apr 2000 
17:22:07 +0200"
Message-Id: <[EMAIL PROTECTED]>
Lines: 15
X-Mailer: Gnus v5.5/Emacs 20.3
Delivered-To: [EMAIL PROTECTED]

[EMAIL PROTECTED] writes:

> the portinfo option -h (--show-targets) is not implemented in parse_opt.

I have reinterpeted this to be

"An unimplemented option (--show-targets) is reported by --help."

and commented out the relevant bits.  

I'm not at all sure what Miles intended this option to do, but if
someone thinks of something and wants to implement it, that's fine
with me.

Thomas




[Bug-hurd] Processed:

2000-09-16 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> reassign 71781 hurd
Bug#71781: [hurd] dh_compress causes kernel panic
Bug reassigned from package `debhelper' to `hurd'.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Darren Benham
(administrator, Debian Bugs database)

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#75253: marked as done (cross-install: some options are broken)

2000-10-24 Thread Debian Bug Tracking System

Your message dated Wed, 25 Oct 2000 01:57:23 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bug#75253: cross-install: some options are broken
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 20 Oct 2000 19:30:41 +
>From [EMAIL PROTECTED] Fri Oct 20 14:30:41 2000
Return-path: <[EMAIL PROTECTED]>
Received: from mta05-svc.ntlworld.com [:::62.253.162.45] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 13mhsG-0004vp-00; Fri, 20 Oct 2000 14:30:41 -0500
Received: from riva.ucam.org ([62.253.132.107]) by mta05-svc.ntlworld.com
  (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP
  id <[EMAIL PROTECTED]>;
  Fri, 20 Oct 2000 20:30:39 +0100
Received: from cjw44 by riva.ucam.org with local (Exim 3.16 #1 (Debian))
id 13mhtt-0007ug-00; Fri, 20 Oct 2000 20:32:21 +0100
From: Colin Watson <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: cross-install: some options are broken
X-Reportbug-Version: 1.3
X-Mailer: reportbug 1.3
Date: Fri, 20 Oct 2000 20:32:21 +0100
Message-Id: <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]

Package: hurd
Version: N/A; reported 2000-10-20
Severity: normal

Some options are broken in the cross-install script at
http://www.debian.org/ports/hurd/extra-files/cross-install>. The
following patch fixes them:

--- cross-install.orig  Fri Oct 20 20:27:49 2000
+++ cross-install   Fri Oct 20 20:29:14 2000
@@ -181,7 +181,7 @@
 while [ "$#" -ne 0 ]
 do
   case "$1" in
-"--hostname"|"--dpkghurd"|"--nativeinstall"|"--log"|"--download"|"--repository")
+
+"--host"|"--hostname"|"--domain"|"--dpkghurd"|"--nativeinstall"|"--log"|"--download"|"--repository")
   if [ "$#" -lt 2 ]
   then
 echo "$1 needs an argument"
@@ -203,7 +203,7 @@
  echo "Cross-installation script for Debian GNU/Hurd"
  echo
  echo "   Options:"
- echo " --host  name  Set the hostname of the new system"
+ echo " --host[name]name  Set the hostname of the new system"
  echo " --domainname  Set the domainname of the new system"
  echo " --dpkghurd  file  Give the filename of the dpkg-hurd script"
  echo " --nativeinstall file  Give the filename of the native-install script"

Thanks,

-- 
Colin Watson [[EMAIL PROTECTED]]

-- System Information
Debian Release: woody
Architecture: i386
Kernel: Linux riva 2.4.0-test2 #1 Sun Jun 25 22:05:08 BST 2000 i686


---
Received: (at 75253-done) by bugs.debian.org; 24 Oct 2000 23:55:33 +
>From [EMAIL PROTECTED] Tue Oct 24 18:55:33 2000
Return-path: <[EMAIL PROTECTED]>
Received: from sunu450.rz.ruhr-uni-bochum.de [:::134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 13oDun-Px-00; Tue, 24 Oct 2000 18:55:33 -0500
Received: (qmail 13015 invoked from network); 24 Oct 2000 23:55:39 -
Received: from dialppp-3-246.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 24 Oct 2000 23:55:39 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
id 13oDwZ-Zj-00; Wed, 25 Oct 2000 01:57:23 +0200
Date: Wed, 25 Oct 2000 01:57:23 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: Colin Watson <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
Subject: Re: Bug#75253: cross-install: some options are broken
Message-ID: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
In-Reply-To: <[EMAIL PROTECTED]>; from [EMAIL PROTECTED] on Fri, Oct 
20, 2000 at 08:32:21PM +0100
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

I uploaded a fixed version, thanks.

On Fri, Oct 20, 2000 at 08:32:21PM +0100, Colin Watson wrote:
> Some options are broken in the cross-install script at
> http://www.debian.org/ports/hurd/extra-files/cross-install>. The
> following patch fixes them:

[...]

Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUhttp://www.gnu.org[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#71781: marked as done ([hurd] dh_compress causes kernel panic)

2000-11-25 Thread Debian Bug Tracking System

Your message dated Sun, 26 Nov 2000 03:22:10 +0100
with message-id <[EMAIL PROTECTED]>
and subject line fixed in 1:1.2-7
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 16 Sep 2000 03:43:01 +
>From [EMAIL PROTECTED] Fri Sep 15 22:43:01 2000
Return-path: <[EMAIL PROTECTED]>
Received: from (colo.walfield.org) [:::209.113.166.29] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 13a8sX-00036k-00; Fri, 15 Sep 2000 22:43:01 -0500
Received: from neal by colo.walfield.org with local (Exim 3.12 #1 (Debian))
id 13a9u0-0006HC-00; Fri, 15 Sep 2000 23:48:36 -0500
Date: Fri, 15 Sep 2000 23:48:36 -0500
To: [EMAIL PROTECTED]
Subject: [hurd] dh_compress causes kernel panic
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2i
X-debbugs-CC: [EMAIL PROTECTED]
From: Neal H Walfield <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]

Package: debhelper
Version: 2.1.8

Hi,

If, when building a package on the hurd, it runs dh_compress then GNU/Mach
panics.  This has been observed with the following two packages: e2fsprogs
and slang.  It is presumed that it will happen with others, however, more
test may be necessary.

Example:

# apt-get source --build e2fsprogs
[snip compile]
dh_compress -a
<>

And GNU/Mach panics.

Thanks,
-Neal

-- 
Neal H Walfield
University of Massachusetts at Lowell
[EMAIL PROTECTED] or [EMAIL PROTECTED]

---
Received: (at 71781-done) by bugs.debian.org; 26 Nov 2000 02:19:18 +
>From [EMAIL PROTECTED] Sat Nov 25 20:19:18 2000
Return-path: <[EMAIL PROTECTED]>
Received: from (c3po.terralink.de) [194.97.37.23] (qmailr)
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 13zrPR-0008OP-00; Sat, 25 Nov 2000 20:19:18 -0600
Received: (qmail 30160 invoked from network); 26 Nov 2000 02:19:16 -
Received: from 213?21?41?225.surf-callino.de (HELO localhost) ([EMAIL PROTECTED])
  by c3po.t-link.de with SMTP; 26 Nov 2000 02:19:16 -
Received: from marcus by localhost with local (Exim 3.16 #1 (Debian))
for [EMAIL PROTECTED]
id 13zrSE-PH-00; Sun, 26 Nov 2000 03:22:10 +0100
Date: Sun, 26 Nov 2000 03:22:10 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: fixed in 1:1.2-7
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

Hi Neal et al,

I didn't hear back from you on this, but I think this is fixed some time
now. If not, we can reopen the report, just let us know.

Thanks,
Marcus

gnumach (1:1.2-5) unstable; urgency=low

  * Update to CVS 2817, which contains a fix for
  linux/dev/glue/block.c.

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUhttp://www.gnu.org[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#66915: marked as done (LD_LIBRARY_PATH breaks login)

2000-11-25 Thread Debian Bug Tracking System

Your message dated Sun, 26 Nov 2000 05:23:47 +0100
with message-id <[EMAIL PROTECTED]>
and subject line fixed in glibc 2.2
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 8 Jul 2000 14:31:43 +
>From [EMAIL PROTECTED] Sat Jul 08 09:31:43 2000
Return-path: <[EMAIL PROTECTED]>
Received: from sunu450.rz.ruhr-uni-bochum.de [134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 2 (Debian))
id 13Avdu-0006nn-00; Sat, 08 Jul 2000 09:31:43 -0500
Received: (qmail 22036 invoked from network); 8 Jul 2000 14:31:41 -
Received: from dialppp-7-233.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 8 Jul 2000 14:31:41 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
for [EMAIL PROTECTED]
id 13Avbt-Jh-00; Sat, 08 Jul 2000 16:29:37 +0200
Date: Sat, 8 Jul 2000 16:29:36 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: LD_LIBRARY_PATH breaks login
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]


Package: hurd
Version: N/A

Hi,

setting

LD_LIBRARY_PATH=/X11R6/lib
export LD_LIBRARY_PATH

(with the X libraries installed, didn't test without those)
in /etc/profile makes it impossible to login via the login shell or simple
telnet. The only way it works I found out is "telnet -l username host".

The errornous behaviour is that for the login shell, no error message
appears and login seems to be restarted (the welcome message appears etc).
For telnet connections, the connection is dropped immediately.

Thanks,
Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org Check Key server 
Marcus Brinkmann  GNUhttp://www.gnu.orgfor public PGP Key 
[EMAIL PROTECTED], [EMAIL PROTECTED]PGP Key ID 36E7CD09
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/   [EMAIL PROTECTED]

---
Received: (at 66915-done) by bugs.debian.org; 26 Nov 2000 04:21:04 +
>From [EMAIL PROTECTED] Sat Nov 25 22:21:04 2000
Return-path: <[EMAIL PROTECTED]>
Received: from (c3po.terralink.de) [194.97.37.23] (qmailr)
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 13ztJI-0005Rc-00; Sat, 25 Nov 2000 22:21:04 -0600
Received: (qmail 1519 invoked from network); 26 Nov 2000 04:21:02 -
Received: from 213?21?44?216.surf-callino.de (HELO localhost) ([EMAIL PROTECTED])
  by c3po.t-link.de with SMTP; 26 Nov 2000 04:21:02 -
Received: from marcus by localhost with local (Exim 3.16 #1 (Debian))
for [EMAIL PROTECTED]
id 13ztLv-Em-00; Sun, 26 Nov 2000 05:23:47 +0100
Date: Sun, 26 Nov 2000 05:23:47 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: fixed in glibc 2.2
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

this is fixed in glibc 2.2, thanks Mark.

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUhttp://www.gnu.org[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: Fixed in NMU hurd 20001126

2000-11-27 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> severity 68417 fixed
Bug#68417: isofs and symlink brokeness
Severity set to `fixed'.

> severity 68626 fixed
Bug#68626: ln 2 pfinet -> operation not supported
Severity set to `fixed'.

> severity 69281 fixed
Bug#69281: More isofs symlink weirdness (test-case)
Severity set to `fixed'.

> severity 72319 fixed
Bug#72319: Empty Executable File Forces Hurd Reboot
Severity set to `fixed'.

> severity 75734 fixed
Bug#75734: hurd: please add build-depends
Severity set to `fixed'.

> quit
Stopping processing here.

Please contact me if you need assistance.

Darren Benham
(administrator, Debian Bugs database)


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: Fixed in NMU gnumach 1:1.2-8

2000-11-27 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> severity 74794 fixed
Bug#74794: gnumach: please build-depend on sharutils
Severity set to `fixed'.

> quit
Stopping processing here.

Please contact me if you need assistance.

Darren Benham
(administrator, Debian Bugs database)


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#68626: marked as done (ln 2 pfinet -> operation not supported)

2000-11-27 Thread Debian Bug Tracking System

Your message dated Mon, 27 Nov 2000 20:59:44 +0100
with message-id <[EMAIL PROTECTED]>
and subject line eh
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 5 Aug 2000 20:23:40 +
>From [EMAIL PROTECTED] Sat Aug 05 15:23:39 2000
Return-path: <[EMAIL PROTECTED]>
Received: from sunu450.rz.ruhr-uni-bochum.de [134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 2 (Debian))
id 13LATr-0005Ec-00; Sat, 05 Aug 2000 15:23:39 -0500
Received: (qmail 3523 invoked from network); 5 Aug 2000 20:23:40 -
Received: from dialppp-3-172.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 5 Aug 2000 20:23:40 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
for [EMAIL PROTECTED]
id 13LASx-54-00; Sat, 05 Aug 2000 22:22:43 +0200
Date: Sat, 5 Aug 2000 22:22:43 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: ln 2 pfinet -> operation not supported
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

Package: hurd
Version: 2000803

Hi,

"ln 2 pfinet", which used to work, gives ENOTSUP.
Same for "ls -l 2".

I am going back to symbolic links in the install script for now...

Thanks,
Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org Check Key server 
Marcus Brinkmann  GNUhttp://www.gnu.orgfor public PGP Key 
[EMAIL PROTECTED], [EMAIL PROTECTED]PGP Key ID 36E7CD09
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/   [EMAIL PROTECTED]

---
Received: (at 68626-done) by bugs.debian.org; 27 Nov 2000 19:58:07 +
>From [EMAIL PROTECTED] Mon Nov 27 13:58:06 2000
Return-path: <[EMAIL PROTECTED]>
Received: from sunu450.rz.ruhr-uni-bochum.de [134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 140UPd-00046S-00; Mon, 27 Nov 2000 13:58:06 -0600
Received: (qmail 2354 invoked from network); 27 Nov 2000 19:58:09 -
Received: from dialppp-7-133.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 27 Nov 2000 19:58:09 -
Received: from marcus by localhost with local (Exim 3.16 #1 (Debian))
id 140URE-0001Sl-00; Mon, 27 Nov 2000 20:59:44 +0100
Date: Mon, 27 Nov 2000 20:59:44 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED]
Subject: eh
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

I *am* the maintainer

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUhttp://www.gnu.org[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#68417: marked as done (isofs and symlink brokeness)

2000-11-27 Thread Debian Bug Tracking System

Your message dated Mon, 27 Nov 2000 20:59:44 +0100
with message-id <[EMAIL PROTECTED]>
and subject line eh
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 2 Aug 2000 17:02:41 +
>From [EMAIL PROTECTED] Wed Aug 02 12:02:41 2000
Return-path: <[EMAIL PROTECTED]>
Received: from sunu450.rz.ruhr-uni-bochum.de [134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 2 (Debian))
id 13K1ui-0007ZH-00; Wed, 02 Aug 2000 12:02:41 -0500
Received: (qmail 17099 invoked from network); 2 Aug 2000 17:02:32 -
Received: from dialppp-3-173.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 2 Aug 2000 17:02:32 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
for [EMAIL PROTECTED]
id 13K1tJ-5U-00; Wed, 02 Aug 2000 19:01:13 +0200
Date: Wed, 2 Aug 2000 19:01:12 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: isofs and symlink brokeness
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

Package: hurd
Version: 2000-08-02

Hi,

isofs died on some symlinks. I found out that it used to realloc a double
sized buffer when adding a path component, but this might not be enough:
The old path plus the new component can be longer than the current alloced
buffer mulitplied with 2.

Then I noticed all targets start with garbage, because after malloc() some
space is already claimed by setting targused to a non-zero value.

Then I noticed that it didn't even recognized there were symlinks, because
VALID_SL is not set.

Then I noticed that it dies on me, because read_diskinode uses the name
field and not the target field to get the link target, which might be 0x0.

Then it worked :) I can check it in if you like, it's tested and all.

Thanks,
Marcus

2000-08-02  Marcus Brinkmann  <[EMAIL PROTECTED]>

* rr.c (rrip_work): In helper function add_comp
set targused to zero after malloc, and loop over
realloc in case doubling is not enough.
After finalizing the link, set VALID_SL valid flag.
* inode.c (read_disknode): For links use rl->target
instead rl->name.

diff -ru hurd/isofs/inode.c /mnt/marcus/gnu/hurd/hurd/hurd-2726/isofs/inode.c
--- hurd/isofs/inode.c  Sun Dec 27 11:19:38 1998
+++ /mnt/marcus/gnu/hurd/hurd/hurd-2726/isofs/inode.c   Wed Aug  2 18:44:55 
+2000
@@ -410,8 +410,8 @@
 {
   if (rl->valid & VALID_SL)
{
- np->dn->link_target = rl->name;
- rl->name = 0;
+ np->dn->link_target = rl->target;
+ rl->target = 0;
  st->st_size = strlen (np->dn->link_target);
}
   else
diff -ru hurd/isofs/rr.c /mnt/marcus/gnu/hurd/hurd/hurd-2726/isofs/rr.c
--- hurd/isofs/rr.c Sun Nov 21 05:28:48 1999
+++ /mnt/marcus/gnu/hurd/hurd/hurd-2726/isofs/rr.c  Wed Aug  2 18:26:03 2000
@@ -363,10 +363,10 @@
  if (rr->target == 0)
{
  rr->target = malloc (cnamelen * 2);
- targused = cnamelen;
+ targused = 0;
  targalloced = cnamelen * 2;
}
- else if (targused + cnamelen > targalloced)
+ else while (targused + cnamelen > targalloced)
rr->target = realloc (rr->target, targalloced *= 2);
  assert (rr->target);
 
@@ -434,6 +434,8 @@
rr->target[targused - 1] = '\0';
  else
add_comp ("", 1);
+
+ rr->valid |= VALID_SL;
 
  free (slbuf);
  goto next_field;

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org Check Key server 
Marcus Brinkmann  GNUhttp://www.gnu.orgfor public PGP Key 
[EMAIL PROTECTED], [EMAIL PROTECTED]PGP Key ID 36E7CD09
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/   [EMAIL PROTECTED]

---
Received: (at 68417-done) by bugs.debian.org; 27 Nov 2000 19:58:06 +
>From [EMAIL PROTECTED] Mon Nov 27 13:58:06 2000
Return-path: <[EMAIL PROTECTED]>
Received: from sunu450.rz.ruhr-uni-bochum.de [134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 140UPd-00046V-00; Mon, 27 Nov 2000 13:58:06 -0600
Received: (qmail 2354 invoked from network); 27 Nov 2000 19:58:09 -
Received: fro

Bug#69281: marked as done (More isofs symlink weirdness (test-case))

2000-11-27 Thread Debian Bug Tracking System

Your message dated Mon, 27 Nov 2000 20:59:44 +0100
with message-id <[EMAIL PROTECTED]>
and subject line eh
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 17 Aug 2000 01:10:46 +
>From [EMAIL PROTECTED] Wed Aug 16 20:10:46 2000
Return-path: <[EMAIL PROTECTED]>
Received: from sunu450.rz.ruhr-uni-bochum.de [:::134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 13PECj-0003Hu-00; Wed, 16 Aug 2000 20:10:45 -0500
Received: (qmail 22320 invoked from network); 17 Aug 2000 01:10:17 -
Received: from dialppp-7-78.rz.ruhr-uni-bochum.de (HELO localhost) ([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 17 Aug 2000 01:10:17 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
for [EMAIL PROTECTED]
id 13PE8q-5T-00; Thu, 17 Aug 2000 03:06:44 +0200
Date: Thu, 17 Aug 2000 03:06:42 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: More isofs symlink weirdness (test-case)
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="envbJBWh7q8WU6mo"
Content-Disposition: inline
Content-Transfer-Encoding: 8bit
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]


--envbJBWh7q8WU6mo
Content-Type: text/plain; charset=iso-8859-1
Content-Disposition: inline
Content-Transfer-Encoding: 8bit

Package: hurd
Version: 2803

Hi,

I have found another symlink bug in isofs. The attached cdimg.gz file
contains the first 400kb of a Debian source package CD ROM, which contains
in the root dir:

ulysses:/cdrom# ls -l
total 39
-r--r--r--1 root root 2309 Mai 17  1999 CHANGES.txt
-r--r--r--1 root root 3842 Mai 17  1999 INSTALL.txt
-r--r--r--1 root root21178 Mai 17  1999 Release-Notes
-r--r--r--1 root root  367 Mai 17  1999 TRANS.TBL
lr-xr-xr-x1 root root1 Mai 17  1999 debian -> ./
dr-xr-xr-x3 root root 2048 Mär 21  1999 dists/
dr-xr-xr-x4 root root 4096 Mai 17  1999 doc/
dr-xr-xr-x8 root root 2048 Feb  2  1999 project/

Now, under the Hurd, stat()'ing INSTALL.txt makes the inode "debian" a copy
of the file! See what I mean in the following transcript (stat()'ing any of
the other directory entries doesn't change the status of "debian")

Script started on Thu Aug 17 02:48:25 2000
hurd:/tmp# ls -l cdimg
-rw-r--r--1 root root   409600 Aug 17 02:47 cdimg
hurd:/tmp# settrans x /hurd/isofs cdimg
hurd:/tmp# ls x
CHANGES.txt  INSTALL.txt  Release-Notes  TRANS.TBL  debian  dists  doc  project
hurd:/tmp# ls -l x/debian
lr-xr-xr-x1 root root1 May 17  1999 x/debian -> .
hurd:/tmp# ls -l x/debian
lr-xr-xr-x1 root root1 May 17  1999 x/debian -> .
hurd:/tmp# ls -l x/INSTALL.txt
-r--r--r--1 root root 3842 May 17  1999 x/INSTALL.txt
hurd:/tmp# ls -l x/debian
-r--r--r--1 root root 3842 May 17  1999 x/debian
hurd:/tmp# exit

Script done on Thu Aug 17 02:50:21 2000

You see that the file size of debian is now the same as of INSTALL.txt, and
the content is identical (not shown in the typescript, but verified by me).

I have not had time yet to track this down. It is not related to my isofs
symlink fixes, because you get the same behaviour with the CVS version of
isofs, just that debian is not a link with this version in the first place,
but a zero-size executable.

This is also most likely not related to the get_directs weirdness I reported
in #63373, because I made a quick attempt to fix that, and it doesn't change
the above behaviour.

This is the root directory content of the CD in binary format:

F CHANGES.TXT;1 CHANGES.txt
L DEBIAN.;1 debian  .
D DISTS dists
D DOC   doc
F INSTALL.TXT;1 INSTALL.txt
D PROJECT   project
F RELEASE-.;1   Release-Notes
D _DISK .disk

Thanks,
Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org Check Key server 
Marcus Brinkmann  GNUhttp://www.gnu.orgfor public PGP Key 
[EMAIL PROTECTED], [EMAIL PROTECTED]PGP Key ID 36E7CD09
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/   [EMAIL PROTECTED]

--envbJBWh7q8WU6mo
Content-Type: application

Bug#72319: marked as done (Empty Executable File Forces Hurd Reboot)

2000-11-27 Thread Debian Bug Tracking System

Your message dated Mon, 27 Nov 2000 20:59:44 +0100
with message-id <[EMAIL PROTECTED]>
and subject line eh
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 24 Sep 2000 04:51:21 +
>From [EMAIL PROTECTED] Sat Sep 23 23:51:21 2000
Return-path: <[EMAIL PROTECTED]>
Received: from c014-h022.c014.sfo.cp.net (c014.sfo.cp.net) [:::209.228.12.86] 
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 13d3l3-J1-00; Sat, 23 Sep 2000 23:51:21 -0500
Received: (cpmta 7645 invoked from network); 23 Sep 2000 21:51:19 -0700
Received: from d83b036a.dsl.flashcom.net (HELO hopper) (216.59.3.106)
  by smtp.flashcom.net (209.228.12.86) with SMTP; 23 Sep 2000 21:51:19 -0700
X-Sent: 24 Sep 2000 04:51:19 GMT
Received: from bfulgham by hopper with local (Exim 3.16 #1 (Debian))
for [EMAIL PROTECTED]
id 13d3tV-0003tF-00; Sat, 23 Sep 2000 22:00:05 -0700
Date: Sat, 23 Sep 2000 22:00:04 -0700
From: Brent Fulgham <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Empty Executable File Forces Hurd Reboot
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
Sender: "Brent A. Fulgham" <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]

Package:  hurd
Version:  2803

If you perform the following steps, the Hurd will either crash
or reboot:

root@orson:~# touch test
root@orson:~# ls -l
total 0
-rw-r--r--1 root root0 Sep 23 20:48 test
root@orson:~# chmod a+rx test
root@orson:~# ls -l
total 0
-rwxr-xr-x1 root root0 Sep 23 20:48 test
root@orson:~# ./test

[ ... hang ... ]  (Or sometimes reboot).

Under Linux, the behavior is more benign:

bfulgham@hopper:~# touch test
bfulgham@hopper:~# ls -l test
-rw-r--r--1 bfulgham bfulgham0 Sep 23 21:56 test
bfulgham@hopper:~# chmod a+rx test
bfulgham@hopper:~# ls -l test
-rwxr-xr-x1 bfulgham bfulgham0 Sep 23 21:56 test
bfulgham@hopper:~# ./test
bfulgham@hopper:~# 

Hurd behavior should be modified to safely handle this condition.

Thanks!

-Brent





---
Received: (at 72319-done) by bugs.debian.org; 27 Nov 2000 19:58:07 +
>From [EMAIL PROTECTED] Mon Nov 27 13:58:06 2000
Return-path: <[EMAIL PROTECTED]>
Received: from sunu450.rz.ruhr-uni-bochum.de [134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 140UPd-00046T-00; Mon, 27 Nov 2000 13:58:06 -0600
Received: (qmail 2354 invoked from network); 27 Nov 2000 19:58:09 -
Received: from dialppp-7-133.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 27 Nov 2000 19:58:09 -
Received: from marcus by localhost with local (Exim 3.16 #1 (Debian))
id 140URE-0001Sl-00; Mon, 27 Nov 2000 20:59:44 +0100
Date: Mon, 27 Nov 2000 20:59:44 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED]
Subject: eh
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

I *am* the maintainer

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUhttp://www.gnu.org[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#74794: marked as done (gnumach: please build-depend on sharutils)

2000-11-27 Thread Debian Bug Tracking System

Your message dated Mon, 27 Nov 2000 20:59:02 +0100
with message-id <[EMAIL PROTECTED]>
and subject line eh
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 15 Oct 2000 12:41:00 +
>From [EMAIL PROTECTED] Sun Oct 15 07:41:00 2000
Return-path: <[EMAIL PROTECTED]>
Received: from 212186010174.11.tuwien.teleweb.at (orcus.priv.at) 
[:::212.186.10.174] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 13kn62-0004p0-00; Sun, 15 Oct 2000 07:40:58 -0500
Received: by orcus.priv.at (Postfix, from userid 1000)
id C6FE3F015; Sun, 15 Oct 2000 14:40:49 +0200 (CEST)
From: Robert Bihlmeyer <[EMAIL PROTECTED]>
Subject: gnumach: please build-depend on sharutils
To: [EMAIL PROTECTED]
X-Mailer: bug 3.3.6
Message-Id: <[EMAIL PROTECTED]>
Date: Sun, 15 Oct 2000 14:40:49 +0200 (CEST)
Delivered-To: [EMAIL PROTECTED]

Package: gnumach
Version: 1:1.2-7
Severity: wishlist

Because the gnumach build process uses uudecode, a "Build-Depends: sharutils"
is needed in the source dsc.

---
Received: (at 74794-done) by bugs.debian.org; 27 Nov 2000 19:56:10 +
>From [EMAIL PROTECTED] Mon Nov 27 13:56:09 2000
Return-path: <[EMAIL PROTECTED]>
Received: from (c3po.terralink.de) [194.97.37.23] (qmailr)
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 140UNl-0003rN-00; Mon, 27 Nov 2000 13:56:09 -0600
Received: (qmail 23356 invoked from network); 27 Nov 2000 19:56:06 -
Received: from 213?21?44?143.surf-callino.de (HELO localhost) ([EMAIL PROTECTED])
  by c3po.t-link.de with SMTP; 27 Nov 2000 19:56:06 -
Received: from marcus by localhost with local (Exim 3.16 #1 (Debian))
for [EMAIL PROTECTED]
id 140UQY-0001Se-00; Mon, 27 Nov 2000 20:59:02 +0100
Date: Mon, 27 Nov 2000 20:59:02 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: eh
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

i *am* the maintainer

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUhttp://www.gnu.org[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#75734: marked as done (hurd: please add build-depends)

2000-11-27 Thread Debian Bug Tracking System

Your message dated Mon, 27 Nov 2000 20:59:44 +0100
with message-id <[EMAIL PROTECTED]>
and subject line eh
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 27 Oct 2000 17:05:49 +
>From [EMAIL PROTECTED] Fri Oct 27 12:05:49 2000
Return-path: <[EMAIL PROTECTED]>
Received: from 212186010174.11.tuwien.teleweb.at (orcus.priv.at) 
[:::212.186.10.174] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 13pCwv-0004GE-00; Fri, 27 Oct 2000 12:05:49 -0500
Received: by orcus.priv.at (Postfix, from userid 1000)
id 6757CF016; Fri, 27 Oct 2000 19:05:39 +0200 (CEST)
From: Robert Bihlmeyer <[EMAIL PROTECTED]>
Subject: hurd: please add build-depends
To: [EMAIL PROTECTED]
X-Mailer: bug 3.3.7
Message-Id: <[EMAIL PROTECTED]>
Date: Fri, 27 Oct 2000 19:05:39 +0200 (CEST)
Delivered-To: [EMAIL PROTECTED]

Package: hurd
Version: 2921
Severity: wishlist

The dependencies I discovered are: texinfo, tetex-bin


---
Received: (at 75734-done) by bugs.debian.org; 27 Nov 2000 19:58:07 +
>From [EMAIL PROTECTED] Mon Nov 27 13:58:06 2000
Return-path: <[EMAIL PROTECTED]>
Received: from sunu450.rz.ruhr-uni-bochum.de [134.147.64.5] 
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 140UPd-00046W-00; Mon, 27 Nov 2000 13:58:06 -0600
Received: (qmail 2354 invoked from network); 27 Nov 2000 19:58:09 -
Received: from dialppp-7-133.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 27 Nov 2000 19:58:09 -
Received: from marcus by localhost with local (Exim 3.16 #1 (Debian))
id 140URE-0001Sl-00; Mon, 27 Nov 2000 20:59:44 +0100
Date: Mon, 27 Nov 2000 20:59:44 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED]
Subject: eh
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

I *am* the maintainer

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUhttp://www.gnu.org[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#78364: marked as done (hurd: lookup for names > diskfs_name_max kills filesystem)

2000-11-30 Thread Debian Bug Tracking System

Your message dated Thu, 30 Nov 2000 20:14:56 +0100
with message-id <[EMAIL PROTECTED]>
and subject line hurd: lookup for names > diskfs_name_max kills filesystem
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 29 Nov 2000 22:16:59 +
>From [EMAIL PROTECTED] Wed Nov 29 16:16:59 2000
Return-path: <[EMAIL PROTECTED]>
Received: from (c3po.terralink.de) [194.97.37.23] (qmailr)
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 141FX9-0007LE-00; Wed, 29 Nov 2000 16:16:59 -0600
Received: (qmail 1948 invoked from network); 29 Nov 2000 22:16:53 -
Received: from 213?21?42?69.surf-callino.de (HELO localhost) ([EMAIL PROTECTED])
  by c3po.t-link.de with SMTP; 29 Nov 2000 22:16:53 -
Received: from marcus by localhost with local (Exim 3.16 #1 (Debian))
id 141FY4-8J-00; Wed, 29 Nov 2000 23:17:56 +0100
From: [EMAIL PROTECTED]
Subject: hurd: lookup for names > diskfs_name_max kills filesystem
To: [EMAIL PROTECTED]
X-Mailer: bug 3.2.9
Message-Id: 
Date: Wed, 29 Nov 2000 23:17:56 +0100
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

Package: hurd
Version: N/A
Severity: normal

Hi,

touch [ALT+256] x

crashes the filesystem. Further debugging showed that the crash happens
immediately after diskfs_S_dir_lookup is called, in the destructor.
The destuctor for dir_lookup is in libdiskfs/priv.h, it is:

extern inline void
end_using_protid_port (struct protid *cred)
{
  if (cred)
ports_port_deref (cred);
}

The crash happens in ports_port_deref, when trying to derefence pi, which is
just cred but interpreted as a pointer to a struct port_info.

Now, that's weird. It crashes with E_BAD_ACCESS in ports_port_deref, because
it can't access the memory at cred. I verified that in _Xdir_lookup

start_dir = begin_using_protid_port(In0P->Head.msgh_request_port);

OutP->RetCode = diskfs_S_dir_lookup(start_dir, In0P->file_name, In0P->flags, 
In0P->mode, &OutP->do_retry, OutP->retry_name, &OutP->result, &resultPoly);
end_using_protid_port(start_dir);

the value of start_dir isn't mangled (wouldn't make sense anyway).
It is the same for diskfs_S_dir_lookup as for end_using_protid_port.
Maybe the memory at this location is accidently freed? How could this
happen? I single stepped through diskfs_S_dir_lookup and diskfs_lookup,
without seeing anything special.

Any hints appreciated,
Marcus


-- System Information
Debian Release: 2.2
Kernel Version: Linux ulysses 2.4.0-test9 #1 Mon Okt 30 20:36:05 CET 2000 i686 unknown


---
Received: (at 78364-done) by bugs.debian.org; 30 Nov 2000 19:12:08 +
>From [EMAIL PROTECTED] Thu Nov 30 13:12:08 2000
Return-path: <[EMAIL PROTECTED]>
Received: from (c3po.terralink.de) [194.97.37.23] (qmailr)
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 141Z7n-0005bK-00; Thu, 30 Nov 2000 13:12:07 -0600
Received: (qmail 12592 invoked from network); 30 Nov 2000 19:12:01 -
Received: from 213?21?44?245.surf-callino.de (HELO localhost) ([EMAIL PROTECTED])
  by c3po.t-link.de with SMTP; 30 Nov 2000 19:12:01 -
Received: from marcus by localhost with local (Exim 3.16 #1 (Debian))
for [EMAIL PROTECTED]
id 141ZAW-Ar-00; Thu, 30 Nov 2000 20:14:56 +0100
Date: Thu, 30 Nov 2000 20:14:56 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: hurd: lookup for names > diskfs_name_max kills filesystem
Message-ID: <[EMAIL PROTECTED]>
References: 
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
In-Reply-To: ; from [EMAIL PROTECTED] 
on Wed, Nov 29, 2000 at 11:17:56PM +0100
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

On Wed, Nov 29, 2000 at 11:17:56PM +0100, [EMAIL PROTECTED] wrote:
> touch [ALT+256] x
> 
> crashes the filesystem.

The reason is that struct dirstat *ds is not cleared and contains bogus
information. This frees some random memory in diskfs_drop_dir_stat.

The following chnage fixes that:

ext2fs, ufs:
2000-11-30  Marcus Brinkmann  <[EMAIL PROTECTED]>

* dir.c (diskfs_lookup_hard): If name is too long, clear
DS before returning ENAMETOOLONG.

Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUhttp://www.gnu.org[EMAIL PROTECTED]
[EMAIL PROTEC

Bug#78524: marked as done (hurd: pfinet(?) doesn't release bind'ed sockets)

2000-12-02 Thread Debian Bug Tracking System

Your message dated Sun, 3 Dec 2000 06:09:50 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Bug#78524: hurd: pfinet(?) doesn't release bind'ed sockets
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 1 Dec 2000 19:22:27 +
>From [EMAIL PROTECTED] Fri Dec 01 13:22:27 2000
Return-path: <[EMAIL PROTECTED]>
Received: from (c3po.terralink.de) [194.97.37.23] (qmailr)
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 141vlL-m9-00; Fri, 01 Dec 2000 13:22:27 -0600
Received: (qmail 25734 invoked from network); 1 Dec 2000 19:22:24 -
Received: from 213?21?40?171.surf-callino.de (HELO localhost) ([EMAIL PROTECTED])
  by c3po.t-link.de with SMTP; 1 Dec 2000 19:22:24 -
Received: from marcus by localhost with local (Exim 3.16 #1 (Debian))
id 141vnG-Bq-00; Fri, 01 Dec 2000 20:24:26 +0100
From: [EMAIL PROTECTED]
Subject: hurd: pfinet(?) doesn't release bind'ed sockets
To: [EMAIL PROTECTED]
X-Mailer: bug 3.2.9
Message-Id: 
Date: Fri, 01 Dec 2000 20:24:26 +0100
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

Package: hurd
Version: N/A
Severity: normal

Hi,

Run nfsd, interrupt it with ^C and try to run it again. It will complain
with EADDRINUSE. That's the same problem that prevents restarting X. Killing
pfinet let's you start it again.

Thanks,
Marcus

-- System Information
Debian Release: 2.2
Kernel Version: Linux ulysses 2.4.0-test9 #1 Mon Okt 30 20:36:05 CET 2000 i686 unknown


---
Received: (at 78524-done) by bugs.debian.org; 3 Dec 2000 05:06:35 +
>From [EMAIL PROTECTED] Sat Dec 02 23:06:35 2000
Return-path: <[EMAIL PROTECTED]>
Received: from (c3po.terralink.de) [194.97.37.23] (qmailr)
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 142RMB-0003px-00; Sat, 02 Dec 2000 23:06:35 -0600
Received: (qmail 14691 invoked from network); 3 Dec 2000 05:06:33 -
Received: from 213?21?42?207.surf-callino.de (HELO localhost) ([EMAIL PROTECTED])
  by c3po.t-link.de with SMTP; 3 Dec 2000 05:06:33 -
Received: from marcus by localhost with local (Exim 3.16 #1 (Debian))
for [EMAIL PROTECTED]
id 142RPK-68-00; Sun, 03 Dec 2000 06:09:50 +0100
Date: Sun, 3 Dec 2000 06:09:50 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Bug#78524: hurd: pfinet(?) doesn't release bind'ed sockets
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

Hi,

this bug was introduced with a change in pfinet_demuxer for the tunnel
device. I checked in the fix:

2000-12-03  Marcus Brinkmann  <[EMAIL PROTECTED]>

* main.c (pfinet_demuxer): New variable PI.
Store port info in PI, and dereference it if found.

Thanks,
Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUhttp://www.gnu.org[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#78990: marked as done (Cannot compile gnumach because of asm/string.h)

2000-12-07 Thread Debian Bug Tracking System

Your message dated Thu, 7 Dec 2000 20:10:06 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bug#78990: Cannot compile gnumach because of asm/string.h
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 7 Dec 2000 10:18:25 +
>From [EMAIL PROTECTED] Thu Dec 07 04:18:25 2000
Return-path: <[EMAIL PROTECTED]>
Received: from ns.uni-sofia.bg [193.68.240.1] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 143y7z-0005fs-00; Thu, 07 Dec 2000 04:18:16 -0600
Received: from mail.fmi.uni-sofia.bg (gauss.fmi.uni-sofia.bg [193.68.246.23])
by ns.uni-sofia.bg (8.8.7/8.8.5) with ESMTP id NAA31514
for <[EMAIL PROTECTED]>; Thu, 7 Dec 2000 13:18:13 +0200
Received: from debian.fmi.uni-sofia.bg ([193.68.246.36])
  by mail.fmi.uni-sofia.bg (Netscape Messaging Server 3.62)
   with ESMTP id 230 for <[EMAIL PROTECTED]>;
  Thu, 7 Dec 2000 11:55:13 +0200
Received: from ogi by debian.fmi.uni-sofia.bg with local (Exim 3.16 #1 (Debian))
id 143y83-0004PO-00
for <[EMAIL PROTECTED]>; Thu, 07 Dec 2000 12:18:19 +0200
Date: Thu, 7 Dec 2000 12:18:19 +0200
From: Ognyan Kulev <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Cannot compile gnumach because of asm/string.h
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
Organization: Faculty of Mathematics and Informatics, University of Sofia, Bulgaria
Delivered-To: [EMAIL PROTECTED]

Package: gnumach
Version: 1.2-2

Trying to compile gnumach on Linux, I do

apt-get install gcc-i386-gnu mig-i386-gnu
apt-get source gnumach
cd gnumach-1.2
export PATH=/usr/i386-gnu/bin:$PATH # Is it needed really?
dpkg-buildpackage -ahurd-i386

and after cleaning, compiling, etc it stops:

cc -O  -D__KERNEL__ -O2 -Idev/include -I../../../i386/linux/dev/include
-I../../linux/dev/include -I../../linux/src/include
-I../../../i386/linux/../../linux/dev/include
-I../../../i386/linux/../../linux/src/include -DMACH -DCMU -DMACH_KERNEL
-DKERNEL -DLINUX_DEV -DCONTINUATIONS -D__ELF__ -Di386 -I. -I..
-I../../../i386/linux/.. -I../.. -I../../../i386/linux/../..
-I../../../i386/linux/../../include -I../../../i386/linux/../../bogus
-I../../../i386/linux/../../util -I../../../i386/linux/../../kern
-I../../../i386/linux/../../device -I../../../i386/linux/../i386at
-I../../../i386/linux/../i386 -I../../../i386/linux/../include
-I../../../i386/linux/../include/mach/sa -I../../../i386/linux/../bogus
-I../../../i386/linux/.. -Wall  -c -o vsprintf.o
../../../i386/linux/../../linux/dev/lib/vsprintf.c
../../../i386/linux/../../linux/dev/lib/vsprintf.c: In function
simple_strtoul':
../../../i386/linux/../../linux/dev/lib/vsprintf.c:32: warning: subscript
has type char'
../../../i386/linux/../../linux/dev/lib/vsprintf.c:39: warning: subscript
has type char'
../../../i386/linux/../../linux/dev/lib/vsprintf.c:40: warning: subscript
has type char'
../../../i386/linux/../../linux/dev/lib/vsprintf.c:41: warning: subscript
has type char'
../../../i386/linux/../../linux/dev/lib/vsprintf.c:41: warning: subscript
has type char'
../../../i386/linux/../../linux/dev/lib/vsprintf.c: In function number':
../../../i386/linux/../../linux/dev/lib/vsprintf.c:133: warning: suggest
explicit braces to avoid ambiguous else'
../../../i386/linux/../../linux/dev/lib/vsprintf.c: In function
linux_vsprintf':
../../linux/dev/include/asm/string.h:551: Invalid asm' statement:
../../linux/dev/include/asm/string.h:551: fixed or forbidden register 1 (dx)
was spilled for class DREG.
make[3]: *** [vsprintf.o] Error 1
make[3]: Leaving directory /home/ogi/gnumach-1.2/build/i386/linux'
make[2]: *** [linux/linux.o] Error 2
make[2]: Leaving directory /home/ogi/gnumach-1.2/build/i386'
make[1]: *** [i386/sysdep.o] Error 2
make[1]: Leaving directory /home/ogi/gnumach-1.2/build'
make: *** [stamp-build] Error 2

I look at string.h, but asm syntax of GCC is too cryptic for me ;-)

-- 
Ognyan Kulev <[EMAIL PROTECTED]>, "\"Programmer\""

---
Received: (at 78990-done) by bugs.debian.org; 7 Dec 2000 18:10:03 +
>From [EMAIL PROTECTED] Thu Dec 07 12:10:03 2000
Return-path: <[EMAIL PROTECTED]>
Received: from ns.uni-sofia.bg [193.68.240.1] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 1445UX-0002oB-00; Thu, 07 Dec 2000 12:10:03 -0600
Received: from mail.fmi.uni-sofia.bg (gauss.fmi.uni-sofia.bg [193.68.246.23])
by ns.uni-sof

Bug#45792: marked as done (Driver for Tekram DC-390W/U/F controllers)

2001-01-14 Thread Debian Bug Tracking System

Your message dated 13 Jan 2001 21:25:14 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Driver for Tekram DC-390W/U/F controllers
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 22 Sep 1999 20:14:30 +
Received: (qmail 13420 invoked from network); 22 Sep 1999 20:14:29 -
Received: from demokrit.nikoma.de (212.122.129.5)
  by master.debian.org with SMTP; 22 Sep 1999 20:14:29 -
Received: from columbus.voegele.home.pages.de (ppp-62.tnt02.ffm.nikoma.de 
[212.122.146.62])
by demokrit.nikoma.de (Postfix) with ESMTP id 84C3956686
for <[EMAIL PROTECTED]>; Wed, 22 Sep 1999 22:14:28 +0200 (CEST)
Received: by columbus.voegele.home.pages.de (Postfix, from userid 1000)
id 9E088EBCC; Wed, 22 Sep 1999 22:14:12 +0200 (CEST)
To: [EMAIL PROTECTED]
Subject: Driver for Tekram DC-390W/U/F controllers
Reply-To: Andreas Voegele <[EMAIL PROTECTED]>
From: Andreas Voegele <[EMAIL PROTECTED]>
Date: 22 Sep 1999 22:14:11 +0200
Message-ID: <[EMAIL PROTECTED]>
Lines: 18

Package: gnumach
Version: 1.2-2
Severity: wishlist

I've got a new Tekram DC-390U SCSI controller which isn't recognized
by the Debian version of the GNU Mach kernel.

>From the file README.tmscsim which comes with Linux 2.2:

"Yes, there was also a driver for the latter, tmscsiw, which supported
DC390W/U/F adapters.  It's not mantained any more, as the ncr53c8xx is
perfectly supporting these adapters since some time."

I've compiled a kernel with the ncr53c8xx driver and am now able to
boot the Hurd.

I suggest replacing --enable-dc390w, --enable-dc390u and
--enable-dc390f with --enable-ncr53c8xx in the rules file.
---
Received: (at 45792-done) by bugs.debian.org; 13 Jan 2001 20:32:21 +
>From [EMAIL PROTECTED] Sat Jan 13 14:32:21 2001
Return-path: <[EMAIL PROTECTED]>
Received: from m-dialin-627.addcom.de (columbus.voegele.local) [62.96.171.155] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 14HXLZ-0008Tf-00; Sat, 13 Jan 2001 14:32:21 -0600
Received: by columbus.voegele.local (Postfix, from userid 1000)
id 4D32C5804; Sat, 13 Jan 2001 21:25:14 +0100 (CET)
Sender: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Driver for Tekram DC-390W/U/F controllers
From: Andreas Voegele <[EMAIL PROTECTED]>
Date: 13 Jan 2001 21:25:14 +0100
Message-ID: <[EMAIL PROTECTED]>
Lines: 3
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Delivered-To: [EMAIL PROTECTED]

I'm closing this bug report since nobody else has complained about the
Tekram DC-390W/U/F driver.  I'm going to switch to something else than
Debian and thus am closing all my bug reports.

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: reopening

2001-01-14 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> reopen 45792
Bug#45792: Driver for Tekram DC-390W/U/F controllers
Bug reopened, originator not changed.

> thanks
Stopping processing here.

Please contact me if you need assistance.

Darren Benham
(administrator, Debian Bugs database)


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#77857: marked as done (hurd: write_node assertion failed building emacs)

2001-01-16 Thread Debian Bug Tracking System

Your message dated Tue, 16 Jan 2001 14:42:19 +0100
with message-id <[EMAIL PROTECTED]>
and subject line fixed
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 23 Nov 2000 22:30:43 +
>From [EMAIL PROTECTED] Thu Nov 23 16:30:43 2000
Return-path: <[EMAIL PROTECTED]>
Received: from (c3po.terralink.de) [194.97.37.23] (qmailr)
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 13z4t8-00029F-00; Thu, 23 Nov 2000 16:30:42 -0600
Received: (qmail 27138 invoked from network); 23 Nov 2000 22:30:40 -
Received: from 213?21?44?193.surf-callino.de (HELO localhost) ([EMAIL PROTECTED])
  by c3po.t-link.de with SMTP; 23 Nov 2000 22:30:40 -
Received: from marcus by localhost with local (Exim 3.16 #1 (Debian))
id 13z4ul-5m-00; Thu, 23 Nov 2000 23:32:23 +0100
From: [EMAIL PROTECTED]
Subject: hurd: write_node assertion failed building emacs
To: [EMAIL PROTECTED]
X-Mailer: bug 3.2.9
Message-Id: 
Date: Thu, 23 Nov 2000 23:32:23 +0100
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

Package: hurd
Version: N/A
Severity: normal

Hi,

building the Debian emacs20 package triggers an assertion failure in
ext2fs/inode.c (write_node):

  assert (!np->dn_set_ctime && !np->dn_set_atime && !np->dn_set_mtime);

This happens when temacs dumps the emacs binary. It does only happen with a
full build. If one reboots, the build continues fine. The resulting emacs
binary segfaults, though. That is another bug, most likely.

I have not yet produced more info. It is clear to me that we must identify
the caller of write_node to be able to track this down further.

Thanks,
Marcus

-- System Information
Debian Release: 2.2
Kernel Version: Linux ulysses 2.4.0-test9 #1 Mon Okt 30 20:36:05 CET 2000 i686 unknown


---
Received: (at 77857-done) by bugs.debian.org; 16 Jan 2001 13:42:22 +
>From [EMAIL PROTECTED] Tue Jan 16 07:42:22 2001
Return-path: <[EMAIL PROTECTED]>
Received: from sunu422.rz.ruhr-uni-bochum.de [134.147.64.14] 
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 14IWNR-0008Sc-00; Tue, 16 Jan 2001 07:42:21 -0600
Received: (qmail 29698 invoked from network); 16 Jan 2001 13:42:19 -
Received: from unknown (HELO ulysses.alg.ruhr-uni-bochum.de) ([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 16 Jan 2001 13:42:19 -
Received: from marcus by ulysses.alg.ruhr-uni-bochum.de with local (Exim 3.20 #1 
(Debian))
id 14IWNP-9M-00
for <[EMAIL PROTECTED]>; Tue, 16 Jan 2001 14:42:19 +0100
Date: Tue, 16 Jan 2001 14:42:19 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: fixed
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.5i
Sender: Marcus Brinkmann <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]

This bug is fixed by now.

Marcus

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: mtrace triggers SIGBUS at first malloc

2001-03-06 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> reassign 88690 hurd
Bug#88690: mtrace triggers SIGBUS at first malloc
Bug reassigned from package `libc0.2' to `hurd'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

Darren Benham
(administrator, Debian Bugs database)


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: reassign bash bugs to hurd

2001-04-25 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> reassign 71777 hurd
Bug#71777: [hurd] Control-C causes shell to exit (over telnet)
Bug reassigned from package `bash' to `hurd'.

> reassign 71778 hurd
Bug#71778: [hurd] Control-R cause bash to hang
Bug reassigned from package `bash' to `hurd'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

Darren Benham
(administrator, Debian Bugs database)


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: Re: Mach lets processes write to I/O ports

2001-05-03 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> tags 46709 security
Bug#46709: Mach lets processes write to I/O ports
Tags added: security

> severity 46709 critical
Bug#46709: Mach lets processes write to I/O ports
Severity set to `critical'.

> quit
Stopping processing here.

Please contact me if you need assistance.

Darren Benham
(administrator, Debian Bugs database)


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#97342: marked as done (hurd: getegid() fails)

2001-05-13 Thread Debian Bug Tracking System

Your message dated Sun, 13 May 2001 20:24:50 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Bug#97342: hurd: getegid() fails
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 13 May 2001 16:09:55 +
>From [EMAIL PROTECTED] Sun May 13 11:09:55 2001
Return-path: <[EMAIL PROTECTED]>
Received: from sunu422.rz.ruhr-uni-bochum.de [134.147.64.14] 
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 14yyRO-Bj-00; Sun, 13 May 2001 11:09:55 -0500
Received: (qmail 24720 invoked by alias); 13 May 2001 16:09:53 -
Received: (qmail 24707 invoked from network); 13 May 2001 16:09:53 -
Received: from dialppp-7-59.rz.ruhr-uni-bochum.de (HELO localhost) ([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 13 May 2001 16:09:53 -
Received: from marcus by localhost with local (Exim 3.22 #1 (Debian))
id 14yyQN-8G-00; Sun, 13 May 2001 18:08:51 +0200
From: [EMAIL PROTECTED]
Subject: hurd: getegid() fails
To: [EMAIL PROTECTED]
X-Mailer: bug 3.3.9
Message-Id: 
Sender: Marcus Brinkmann <[EMAIL PROTECTED]>
Date: Sun, 13 May 2001 18:08:51 +0200
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

Package: hurd
Version: N/A
Severity: normal

Hi,

I found out why screen complains about /var/run/screen permissions.  screen
runs as root.utmp, 02755, and expects utmp as its effective group id.

The following program fails:

main()
{
  printf ("%i\n", getegid();
}

$ make getegid
$ ./getegid
0
$ chgrp root.utmp getegid; chmod 02755 getegid
$ ./getegid
0

The expected value in the last run is 43 (or whatever the gid of utmp is on
your system).

Thanks,
Marcus

-- System Information
Debian Release: testing/unstable
Kernel Version: Linux ulysses 2.4.0-test9 #1 Mon Okt 30 20:36:05 CET 2000 i686 unknown


---
Received: (at 97342-done) by bugs.debian.org; 13 May 2001 18:25:28 +
>From [EMAIL PROTECTED] Sun May 13 13:25:28 2001
Return-path: <[EMAIL PROTECTED]>
Received: from sunu422.rz.ruhr-uni-bochum.de [134.147.64.14] 
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 14z0YZ-0005CG-00; Sun, 13 May 2001 13:25:28 -0500
Received: (qmail 22405 invoked by alias); 13 May 2001 18:25:26 -
Received: (qmail 22398 invoked from network); 13 May 2001 18:25:25 -
Received: from dialppp-5-43.rz.ruhr-uni-bochum.de (HELO localhost) ([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 13 May 2001 18:25:25 -
Received: from marcus by localhost with local (Exim 3.22 #1 (Debian))
for [EMAIL PROTECTED]
id 14z0Y0-7O-00; Sun, 13 May 2001 20:24:52 +0200
Date: Sun, 13 May 2001 20:24:50 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: Bug#97342: hurd: getegid() fails
Message-ID: <[EMAIL PROTECTED]>
References: 
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.15i
In-Reply-To: ; from [EMAIL PROTECTED] 
on Sun, May 13, 2001 at 06:08:51PM +0200
Sender: Marcus Brinkmann <[EMAIL PROTECTED]>
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

On Sun, May 13, 2001 at 06:08:51PM +0200, [EMAIL PROTECTED] wrote:
> The following program fails:
> 
> main()
> {
>   printf ("%i\n", getegid();
> }
> 
> $ make getegid
> $ ./getegid
> 0
> $ chgrp root.utmp getegid; chmod 02755 getegid
> $ ./getegid
> 0

Fact is, that the user id is always used.
The following change in libdiskfs should fix it:

2001-05-13  Marcus Brinkmann  <[EMAIL PROTECTED]>

* file-exec.c: Initialize GID with st_gid rather than st_uid.

Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUhttp://www.gnu.org[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#63373: marked as done (suspicious code in isofs)

2001-05-26 Thread Debian Bug Tracking System

Your message dated Sun, 27 May 2001 02:17:34 +0200
with message-id <[EMAIL PROTECTED]>
and subject line I fixed that! I fixed that!
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 1 May 2000 15:10:35 +
Received: (qmail 12640 invoked from network); 1 May 2000 15:10:34 -
Received: from sunu450.rz.ruhr-uni-bochum.de (134.147.64.5)
  by master.debian.org with SMTP; 1 May 2000 15:10:34 -
Received: (qmail 7369 invoked from network); 1 May 2000 15:10:26 -
Received: from dialppp-1-133.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 1 May 2000 15:10:26 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
for [EMAIL PROTECTED]
id 12mHjY-0003rk-00; Mon, 01 May 2000 17:03:40 +0200
Date: Mon, 1 May 2000 17:03:40 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: suspicious code in isofs
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
Organization: Marcus Brinkmann's Home

Package: hurd
Version: N/A

Hi,

I hope I don't make fuss about nothing, in case I don't understand the code.
Anyway, it looks strange.

In isofs/lookup.c (diskfs_get_directs), there is the first for-loop, which
seems to check if there are enough entries available.

I want to draw your attention to the "Ignore and skip RE entries" comment.

  /* Skip to ENTRY */
  dirbuf = disk_image + (dp->dn->file_start << store->log2_block_size);
  bufp = dirbuf;
  for (i = 0; i < entry; i ++)
{
  struct rrip_lookup rr;

  ep = (struct dirrect *) bufp;
  rrip_lookup (ep, &rr, 0);

  /* Ignore and skip RE entries */
  if (rr.valid & VALID_RE)
{
  bufp = bufp + ep->len;
  release_rrip (&rr);
  continue;
}

 
   }

It seems as if those RE entries should not be counted. This is supported by
the following while-loop, which copies the valid entries into the return
buffer. However, this can't work! because a continue in the for-loop will
nevertheless increment the loop variable i. It looks as if the code was
cut&pasted from the while loop, or an earlier while loop was changed into a
for loop or so.

If I had to guess, I would add a i-- in the if-block.

But this is not all. The code looks suspicious in a second way, too.
The value the incremented bufp points to is not checked for null.
I don't know the ISO9660 standard, but if it could be that a RE entry is at
the end of a logical sector, this code will overrun, because the validity
check at the end of the for-loop is skipped (because of the continue):

  ...

  bufp = bufp + ep->len;

  /* If BUFP points at a null, then we have hit the last
 record in this logical sector.  In that case, skip up to
 the next logical sector. */
  if (*(char *)bufp == '\0')
bufp = (void *) (((long) bufp & ~(logical_sector_size - 1))
 + logical_sector_size);
}

If my analysis is true, the code needs to be rearranged a bit.

Thanks,
Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org Check Key server 
Marcus Brinkmann  GNUhttp://www.gnu.orgfor public PGP Key 
[EMAIL PROTECTED], [EMAIL PROTECTED]PGP Key ID 36E7CD09
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/   [EMAIL PROTECTED]
---
Received: (at 63373-close) by bugs.debian.org; 27 May 2001 00:17:38 +
>From [EMAIL PROTECTED] Sat May 26 19:17:38 2001
Return-path: <[EMAIL PROTECTED]>
Received: from (localhost) [212.23.136.22] (mail)
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 153oFV-0002Fb-00; Sat, 26 May 2001 19:17:38 -0500
Received: from marcus by localhost with local (Exim 3.22 #1 (Debian))
id 153oFT-0002W5-00
for <[EMAIL PROTECTED]>; Sun, 27 May 2001 02:17:35 +0200
Date: Sun, 27 May 2001 02:17:34 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: I fixed that! I fixed that!
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.15i
Sender: Marcus Brinkmann <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]

fixed in hurd 20010426

Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUh

Bug#88690: marked as done (mtrace triggers SIGBUS at first malloc)

2001-05-26 Thread Debian Bug Tracking System

Your message dated Sun, 27 May 2001 03:01:28 +0200
with message-id <[EMAIL PROTECTED]>
and subject line fixed
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 6 Mar 2001 03:31:13 +
>From [EMAIL PROTECTED] Mon Mar 05 21:31:13 2001
Return-path: <[EMAIL PROTECTED]>
Received: from mail-cl16-hme0.zet.net (zet.net) [:::195.189.32.26] 
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 14a8Bt-0008MN-00; Mon, 05 Mar 2001 21:31:13 -0600
Received: (COMMCENTER.MAIL 21385); 6 Mar 2001 03:31:10 -
Received: from  (HELO localhost) (62.67.88.16)
  by mail-cl16-hme0.zet.net with SMTP; 6 Mar 2001 03:31:10 -
Received: from marcus by localhost with local (Exim 3.22 #1 (Debian))
id 14a877-7T-00; Tue, 06 Mar 2001 04:26:17 +0100
Date: Tue, 6 Mar 2001 04:25:57 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: mtrace triggers SIGBUS at first malloc
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.15i
Sender: Marcus Brinkmann <[EMAIL PROTECTED]>
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

Package: libc0.2
Version: 2.2.2-1

Hi,

mtrace() triggers SIGBUS on a server binary.
I tested the following patch to ext2fs:

--- gnu/cvs/hurd/ext2fs/ext2fs.cMon Jan  8 23:27:01 2001
+++ gnu/hurd/hurd/hurd-20010111/ext2fs/ext2fs.c Tue Mar  6 03:57:38 2001
@@ -28,6 +28,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include "ext2fs.h"
@@ -166,6 +167,9 @@
 {
   error_t err;
   mach_port_t bootstrap;
+
+  setenv("MALLOC_TRACE", "/tmp/mtrace", 1);
+  mtrace();
 
   /* Initialize the diskfs library, parse arguments, and open the store.
  This starts the first diskfs thread for us.  */

The below transcript is the result. Note that this doesn't happen for a very
simple test case that only calls setenv/mtrace/malloc.

Thanks,
Marcus

Script started on Tue Mar  6 04:08:15 2001
hurd:~# gdb /hurd/ext2fs.mtrace
GNU gdb 5.0
Copyright 2000 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "i386-unknown-gnu0.2"...
(gdb) run
Starting program: /hurd/ext2fs.mtrace 

Program received signal SIGBUS, Bus error.
0x11e4910 in _dl_addr (address=0x804cce9, info=0x124fc4c) at dl-addr.c:67
67  dl-addr.c: No such file or directory.
(gdb) bt full
#0  0x11e4910 in _dl_addr (address=0x804cce9, info=0x124fc4c) at dl-addr.c:67
l = (struct link_map *) 0x124fc4c
match = (struct link_map *) 0x207c8
symtab = (Elf32_Sym *) 0x207c8
matchsym = (Elf32_Sym *) 0x8048034
strtab = 0x8 
#1  0x1143c75 in tr_where (caller=0x804cce9) at mtrace.c:99
info = {dli_fname = 0x169cb "", dli_fbase = 0x0, 
  dli_sname = 0x8 , dli_saddr = 0xddc9}
#2  0x1144074 in tr_mallochook (size=8, caller=0x804cce9) at mtrace.c:171
size = 8
hdr = (void *) 0x8056e30
#3  0x1140516 in __libc_malloc (bytes=8) at malloc.c:2701
result = (void *) 0x1021c40
bytes = 133064
ar_ptr = (arena *) 0x124fe20
nb = 133064
victim = 0x8056a08
#4  0x804cce9 in parse_opt (key=16777219, arg=0x0, state=0x124fe20)
at ../../ext2fs/ext2fs.c:106
key = 16915520
state = (struct argp_state *) 0x124fe20
values = (struct {...} *) 0x0
#5  0x11c32bc in group_parse (group=0x8056a08, state=0x124fe20, key=16777219, 
---Type  to continue, or q  to quit---
arg=0x0) at argp-parse.c:279
group = (struct group *) 0x8056a08
state = (struct argp_state *) 0x124fe20
#6  0x11c382d in parser_init (parser=0x124fe04, argp=0x124fd84, argc=1, 
argv=0x124ff64, flags=8, input=0x124fea0) at argp-parse.c:566
argp = (struct argp *) 0x124fe20
argc = 16915520
input = (void *) 0x1021c40
err = 0
group = (struct group *) 0x8056a08
szs = {short_len = 115, long_len = 38, num_groups = 7, 
  num_child_inputs = 7}
#7  0x11c3fdd in __argp_parse (argp=0x124fd84, argc=1, argv=0x124ff64, 
flags=8, end_index=0x0, input=0x124fea0) at argp-parse.c:931
err = 16915520
parser = {argp = 0x124fd84, 
  short_opts = 0x8056db4 "-DS:C:rws::n

Bug#78011: marked as done (storeio (in)activation (was: Re: CDROM lock))

2001-05-26 Thread Debian Bug Tracking System

Your message dated Sun, 27 May 2001 02:58:31 +0200
with message-id <[EMAIL PROTECTED]>
and subject line That was fixed, too.
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 26 Nov 2000 03:14:02 +
>From [EMAIL PROTECTED] Sat Nov 25 21:14:02 2000
Return-path: <[EMAIL PROTECTED]>
Received: from (c3po.terralink.de) [194.97.37.23] (qmailr)
by master.debian.org with smtp (Exim 3.12 1 (Debian))
id 13zsGP-0002xU-00; Sat, 25 Nov 2000 21:14:01 -0600
Received: (qmail 31987 invoked from network); 26 Nov 2000 03:13:59 -
Received: from 213?21?40?184.surf-callino.de (HELO localhost) ([EMAIL PROTECTED])
  by c3po.t-link.de with SMTP; 26 Nov 2000 03:13:59 -
Received: from marcus by localhost with local (Exim 3.16 #1 (Debian))
id 13zsHs-5O-00; Sun, 26 Nov 2000 04:15:32 +0100
Date: Sun, 26 Nov 2000 04:15:32 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: Roland McGrath <[EMAIL PROTECTED]>
Cc: [EMAIL PROTECTED]
Subject: storeio (in)activation (was: Re: CDROM lock)
Message-ID: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]> 
<[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.1.4i
In-Reply-To: <[EMAIL PROTECTED]>; from [EMAIL PROTECTED] 
on Wed, Oct 18, 2000 at 01:52:25AM -0400
Organization: Marcus Brinkmann's Home
Delivered-To: [EMAIL PROTECTED]

Package: hurd
Severity: wishlist

On Wed, Oct 18, 2000 at 01:52:25AM -0400, Roland McGrath wrote:
> In oskit-mach, device_close is a no-op and releasing the last send right to
> the port returned by device_open is what closes the device.  Then there is
> nothing extra to worry about, even in case of untimely death of translator.
> So there.

This is not good enough, IMHO. Alexey Dejneka sent in a patch for gnumach
that does the same, and it works just fine. But after doing:

settrans -ag /cdrom

you have to do

settrans -ag /dev/hd3

(or whatever your CD ROM device is) as well, or the CD ROM remains busy.
I consider this to be a bit inconvenient, and also repetitive. In fact, we
don't handle removeable media well currently (CD ROM, ZIP).
I think that storeio should release such ressources it doesn't need anymore.

Thanks,
Marcus

I wrote (just to log it in the BTS):
> The problem is that the responsibility is not entirely clear to me.
> isofs does use storeio on /dev/hd3, so for CD changes to work, clearing the
> active isofs translator should free the device. This means, a close on an
> open_hook in storeio should set the INACTIVE flag in the store if it is the
> last one. Also, the right thing has to be done when the translator should go
> away, and this even if nosync is true.

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUhttp://www.gnu.org[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de

---
Received: (at 78011-done) by bugs.debian.org; 27 May 2001 00:58:33 +
>From [EMAIL PROTECTED] Sat May 26 19:58:33 2001
Return-path: <[EMAIL PROTECTED]>
Received: from (localhost) [212.23.136.22] (mail)
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 153ot7-0003NY-00; Sat, 26 May 2001 19:58:33 -0500
Received: from marcus by localhost with local (Exim 3.22 #1 (Debian))
id 153ot5-0005nc-00
for <[EMAIL PROTECTED]>; Sun, 27 May 2001 02:58:31 +0200
Date: Sun, 27 May 2001 02:58:31 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: That was fixed, too.
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.15i
Sender: Marcus Brinkmann <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]

Fixed since some time.  The revocation call at kernel level is missing,
though.

Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUhttp://www.gnu.org[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: so_linger

2001-10-29 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> retitle 109519 SO_LINGER should let process sleep on close()
Bug#109519: pfinet crashs in tcp_close() because of missing schedule_timeout()
Changed Bug title.

> severity 109519 wishlist
Bug#109519: SO_LINGER should let process sleep on close()
Severity set to `wishlist'.

> thank you
Stopping processing here.

Please contact me if you need assistance.

Darren Benham
(administrator, Debian Bugs database)


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#115311: marked as done (Assertion failure in libdiskfs while moving directory)

2001-10-29 Thread Debian Bug Tracking System

Your message dated Mon, 29 Oct 2001 21:50:22 +0100
with message-id <[EMAIL PROTECTED]>
and subject line fixed
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.)

Darren Benham
(administrator, Debian Bugs database)

--
Received: (at submit) by bugs.debian.org; 12 Oct 2001 00:10:10 +
>From [EMAIL PROTECTED] Thu Oct 11 19:10:10 2001
Return-path: <[EMAIL PROTECTED]>
Received: from klecker.debian.org [198.186.203.20] (mail)
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 15rptx-0001IT-00; Thu, 11 Oct 2001 19:10:09 -0500
Received: from mailout02.sul.t-online.com (mailout02.sul.t-online.de) [194.25.134.17] 
by klecker.debian.org with esmtp (Exim 3.12 1 (Debian))
id 15rptw-0003sw-00; Thu, 11 Oct 2001 17:10:08 -0700
Received: from fwd00.sul.t-online.de 
by mailout02.sul.t-online.de with smtp 
id 15rpsY-O0-00; Fri, 12 Oct 2001 02:08:42 +0200
Received: from orion.sc (02151503627-0001@[217.84.6.158]) by fmrl00.sul.t-online.com
with esmtp id 15rpsS-17BRuCC; Fri, 12 Oct 2001 02:08:36 +0200
Received: from [192.168.0.2] (helo=gryffindor.sc)
by orion.sc with esmtp (Exim 3.12 #1 (Debian))
id 15rrsD-8L-00
for <[EMAIL PROTECTED]>; Fri, 12 Oct 2001 04:16:29 +0200
Received: from moritz by gryffindor.sc with local (Exim 3.12 #1 (Debian))
id 15rps0-0008H4-00
for <[EMAIL PROTECTED]>; Fri, 12 Oct 2001 02:08:08 +0200
To: [EMAIL PROTECTED]
Subject: Assertion failure in libdiskfs while moving directory
From: Moritz Schulte <[EMAIL PROTECTED]>
Date: Fri, 12 Oct 2001 02:08:08 +0200
Message-ID: <[EMAIL PROTECTED]>
Lines: 22
User-Agent: Gnus/5.090004 (Oort Gnus v0.04) Emacs/20.7
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Sender: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]

Package: hurd
Version: N/A
Severity: normal

Hi,

the Assertion failure:

ext2fs.static: ../../libdiskfs/dir-renamed.c:140: diskfs_rename_dir:
Assertion `tmpnp == fdp' failed.

here it's reproducible with the following commands:

mkdir foobar
chmod 0 foobar
mv foobar /somewhere # CRASH.

moritz
-- 
Moritz Schulte <[EMAIL PROTECTED]> http://www.chaosdorf.de/moritz/
Debian/GNU supporter - http://www.debian.org/ http://www.gnu.org/
GPG fingerprint = 3A14 3923 15BE FD57 FC06  B501 0841 2D7B 6F98 4199

---
Received: (at 115311-done) by bugs.debian.org; 29 Oct 2001 20:50:25 +
>From [EMAIL PROTECTED] Mon Oct 29 14:50:25 2001
Return-path: <[EMAIL PROTECTED]>
Received: from porta.u64.de [194.77.88.106] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 15yJMX-0006Wx-00; Mon, 29 Oct 2001 14:50:25 -0600
Received: from (localhost) [212.23.136.22] 
by porta.u64.de with asmtp (Exim 3.12 #1 (Debian))
id 15yKGc-0006YL-00; Mon, 29 Oct 2001 22:48:22 +0100
Received: from marcus by localhost with local (Exim 3.32 #1 (Debian))
id 15yJMU-cb-00
for <[EMAIL PROTECTED]>; Mon, 29 Oct 2001 21:50:22 +0100
Date: Mon, 29 Oct 2001 21:50:22 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: fixed
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.23i
Sender: Marcus Brinkmann <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]

fixed in some recent hurd binary snapshot

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUhttp://www.gnu.org[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: Fixed in NMU of mig 1.2-2

2001-10-30 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> tag 83111 + fixed
Bug#83111: mig looks for i386-gnu-gcc instead of gcc
Tags added: fixed

> quit
Stopping processing here.

Please contact me if you need assistance.

Darren Benham
(administrator, Debian Bugs database)


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#42156: marked as done (gnumach: should support multiboot standard)

2002-03-07 Thread Debian Bug Tracking System

Your message dated Fri, 8 Mar 2002 00:22:46 +0100
with message-id <[EMAIL PROTECTED]>
and subject line closing bugs
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; 29 Jul 1999 20:03:06 +
Received: (qmail 17011 invoked from network); 29 Jul 1999 20:02:56 -
Received: from sunu450.rz.ruhr-uni-bochum.de (134.147.222.33)
  by master.debian.org with SMTP; 29 Jul 1999 20:02:56 -
Received: (qmail 1184 invoked from network); 29 Jul 1999 20:02:42 -
Received: from dialppp-5-110.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 29 Jul 1999 20:02:42 -
Received: from marcus by localhost with local (Exim 2.11 #1 (Debian))
id 119wQL-5y-00; Thu, 29 Jul 1999 22:05:05 +0200
From: [EMAIL PROTECTED]
Subject: gnumach: should support multiboot standard
To: [EMAIL PROTECTED]
X-Mailer: bug 3.2.2
Message-Id: 
Sender: Marcus Brinkmann <[EMAIL PROTECTED]>
Date: Thu, 29 Jul 1999 22:05:05 +0200
Organization: Marcus Brinkmann's Home

Package: gnumach
Version: N/A
Severity: normal

Hello,

GNU Mach should support the multiboot standard, so we don't need to specify
the root=/device at the boot command line. GRUB does hand over the root
device in compliance with the multiboot standard.

Thanks,
Marcus

-- System Information
Debian Release: potato
Kernel Version: Linux ulysses 2.2.10-ac9 #1 Mit Jul 14 01:43:01 CEST 1999 i586 unknown

---
Received: (at 42156-done) by bugs.debian.org; 7 Mar 2002 23:22:50 +
>From [EMAIL PROTECTED] Thu Mar 07 17:22:50 2002
Return-path: <[EMAIL PROTECTED]>
Received: from porta.u64.de [194.77.88.106] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 16j7Dm-0008Ls-00; Thu, 07 Mar 2002 17:22:50 -0600
Received: from (localhost) [212.23.136.22] 
by porta.u64.de with asmtp (Exim 3.12 #1 (Debian))
id 16j7M0-0001qL-00; Fri, 08 Mar 2002 00:31:20 +0100
Received: from marcus by localhost with local (Exim 3.34 #1 (Debian))
id 16j7Di-0001wa-00; Fri, 08 Mar 2002 00:22:46 +0100
Date: Fri, 8 Mar 2002 00:22:46 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: closing bugs
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.27i
Sender: Marcus Brinkmann <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]

cleaning up obsolete items

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUhttp://www.gnu.org[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#45605: marked as done (gnumach: update of __generic_memcpy_tofs)

2002-03-07 Thread Debian Bug Tracking System

Your message dated Fri, 8 Mar 2002 00:22:46 +0100
with message-id <[EMAIL PROTECTED]>
and subject line closing bugs
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; 20 Sep 1999 17:39:51 +
Received: (qmail 16706 invoked from network); 20 Sep 1999 17:39:51 -
Received: from sunu450.rz.ruhr-uni-bochum.de (134.147.222.33)
  by master.debian.org with SMTP; 20 Sep 1999 17:39:51 -
Received: (qmail 21859 invoked from network); 20 Sep 1999 17:39:38 -
Received: from dialppp-5-171.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 20 Sep 1999 17:39:38 -
Received: from marcus by localhost with local (Exim 2.11 #1 (Debian))
id 11T6zf-6M-00; Mon, 20 Sep 1999 19:12:47 +0200
From: [EMAIL PROTECTED]
Subject: gnumach: update of __generic_memcpy_tofs
To: [EMAIL PROTECTED]
X-Mailer: bug 3.2.2
Message-Id: 
Date: Mon, 20 Sep 1999 19:12:47 +0200
Organization: Marcus Brinkmann's Home

Package: gnumach
Version: N/A
Severity: normal

Hello,

the __generic_memcpy_tofs in linux/dev/include/asm-i386/segment.h has a bug:
If size is 1, something bad happens and GNU Mach panics.

Instead fixing this bug in the current code (which I can't because the last
time I programmed in assembler was on a 6510), I suggest updating to the
equivalent code from Linux 2.2.12 (it is from linux/include/asm-i386/uaccess.h
and has the name __copy_user, but does exactly the same job).

BTW, the reason that the code is formatted this way is because it is a macro
in linux 2.2.10. I didn't want to break anything, so I did not touch it
further. Feel free to clean it up.

With this fix, and the char driver patch, random works! (and not only
urandom, as reported).

Thanks,
Marcus

--- gnumach/linux/dev/include/asm-i386/segment.hMon Apr 26 07:47:29 1999
+++ /mnt/marcus/gnu/hurd/patch/gnumach.cvs/linux/dev/include/asm-i386/segment.h Mon 
+Sep 20 18:58:43 1999
@@ -94,28 +94,24 @@
 
 static inline void __generic_memcpy_tofs(void * to, const void * from, unsigned long 
n)
 {
-__asm__ volatile
-   ("  cld
-   push %%es
-   push %%fs
-   cmpl $3,%0
-   pop %%es
-   jbe 1f
-   movl %%edi,%%ecx
-   negl %%ecx
-   andl $3,%%ecx
-   subl %%ecx,%0
-   rep; movsb
-   movl %0,%%ecx
-   shrl $2,%%ecx
-   rep; movsl
-   andl $3,%0
-   1:  movl %0,%%ecx
-   rep; movsb
-   pop %%es"
-   :"=abd" (n)
-   :"0" (n),"D" ((long) to),"S" ((long) from)
-   :"cx","di","si");
+int __d0, __d1;
+__asm__ __volatile__(
+"0: rep; movsl\n"
+"   movl %3,%0\n"
+"1: rep; movsb\n"
+"2:\n"
+".section .fixup,\"ax\"\n"
+"3: lea 0(%3,%0,4),%0\n"
+"   jmp 2b\n"
+".previous\n"
+".section __ex_table,\"a\"\n"
+"   .align 4\n"
+"   .long 0b,3b\n"
+"   .long 1b,2b\n"
+".previous"
+: "=&c"(n), "=&D" (__d0), "=&S" (__d1)
+: "r"(n & 3), "0"(n / 4), "1"(to), "2"(from)
+: "memory");
 }
 
 static inline void __constant_memcpy_tofs(void * to, const void * from, unsigned long 
n)


-- System Information
Debian Release: potato
Kernel Version: Linux ulysses 2.2.12 #1 Mit Sep 15 03:28:57 CEST 1999 i586 unknown

---
Received: (at 45605-done) by bugs.debian.org; 7 Mar 2002 23:22:50 +
>From [EMAIL PROTECTED] Thu Mar 07 17:22:50 2002
Return-path: <[EMAIL PROTECTED]>
Received: from porta.u64.de [194.77.88.106] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 16j7Dm-0008Ls-00; Thu, 07 Mar 2002 17:22:50 -0600
Received: from (localhost) [212.23.136.22] 
by porta.u64.de with asmtp (Exim 3.12 #1 (Debian))
id 16j7M0-0001qL-00; Fri, 08 Mar 2002 00:31:20 +0100
Rece

Processed: Long since fixed

2002-03-31 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> close #129559
Bug#129559: libpager robustness
Bug closed, send any further explanations to Marcus Brinkmann 
<[EMAIL PROTECTED]>

> close #118908
Bug#118908: make TAGS does not work without having run configure
Bug closed, send any further explanations to Neal H Walfield <[EMAIL PROTECTED]>

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: Useless

2002-03-31 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> close #71777
Bug#71777: [hurd] Control-C causes shell to exit (over telnet)
Bug closed, send any further explanations to Neal H Walfield <[EMAIL PROTECTED]>

> close #71778
Bug#71778: [hurd] Control-R cause bash to hang
Bug closed, send any further explanations to Neal H Walfield <[EMAIL PROTECTED]>

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: Re: Bug#144545: hurd: init scripts don't fsck extra partitions

2002-04-25 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> tags 144545 - patch
Bug#144545: hurd: init scripts don't fsck extra partitions
Tags removed: patch

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: bug #145622

2002-05-02 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> severity 145622 wishlist
Bug#145622: process crash on SIGFPE
Severity set to `wishlist'.

> retitle 145622 --kill by default on crash server
Bug#145622: process crash on SIGFPE
Changed Bug title.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: add some tags

2002-05-13 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> tag 70238 potato
Bug#70238: automatic build fails for potato
Tags added: potato

> tag 146797 patch
Bug#146797: hurd: policy violation section 13.2
Tags added: patch

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#146820: marked as done (hurd: MAKEDEV doesn't understand device:hdXsY syntax)

2002-05-13 Thread Debian Bug Tracking System

Your message dated Mon, 13 May 2002 14:44:48 +0200
with message-id <[EMAIL PROTECTED]>
and subject line closing non-package bug
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; 13 May 2002 12:12:45 +
>From [EMAIL PROTECTED] Mon May 13 07:12:45 2002
Return-path: <[EMAIL PROTECTED]>
Received: from 80-24-13-86.uc.nombres.ttd.es (aragorn) [80.24.13.86] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 177Eh3-0005zi-00; Mon, 13 May 2002 07:12:45 -0500
Received: from rmh by aragorn with local (Exim 3.35 #1 (Debian))
id 177A0f-NT-00; Mon, 13 May 2002 09:12:41 +0200
From: Robert Millan <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: hurd: MAKEDEV doesn't understand device:hdXsY syntax
X-Mailer: reportbug 1.50
Date: Mon, 13 May 2002 09:12:41 +0200
Message-Id: <E177A0f-NT-00@aragorn>
Sender: Robert Millan <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]

Package: hurd
Version: N/A; reported 2002-05-13
Severity: normal
Tags: patch

On Sun, May 12, 2002 at 03:24:47AM +0200, Marcus Brinkmann wrote:
> > native-install: `fsysopts / | perl -ne 'm!^/hurd/(.*?)\.static.*?([^\s]+)\s*?$!; 
>print $2;'` returns device:hdXsY which MAKEDEV doesn't understand
>
> This is a bug in native-install.  It would be nice if someone could fix it
> to work with the old and the new syntax.

This should do it:

--- MAKEDEV.old Mon May 13 01:41:45 2002
+++ MAKEDEV Mon May 13 01:45:48 2002
@@ -57,7 +57,7 @@
 }
 
 function st {
-  local NODE="$1"
+  local NODE="`echo $1 | sed 's%device\:%/dev/%g'`"
   local OWNER="$2"
   local PERM="$3"
   shift 3

-- System Information
Debian Release: 3.0
Architecture: i386
Kernel: Linux aragorn 2.4.18 #1 Sat Apr 13 21:19:47 CEST 2002 i586
Locale: LANG=C, LC_CTYPE=


---
Received: (at 146820-done) by bugs.debian.org; 13 May 2002 12:44:50 +
>From [EMAIL PROTECTED] Mon May 13 07:44:50 2002
Return-path: <[EMAIL PROTECTED]>
Received: from porta.u64.de [194.77.88.106] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 177FC6-0007ma-00; Mon, 13 May 2002 07:44:50 -0500
Received: from (localhost) [212.23.136.22] 
by porta.u64.de with asmtp (Exim 3.12 #1 (Debian))
id 177Fdr-00088Y-00; Mon, 13 May 2002 15:13:31 +0200
Received: from marcus by localhost with local (Exim 3.35 #1 (Debian))
id 177FC4-0003Bn-00
for <[EMAIL PROTECTED]>; Mon, 13 May 2002 14:44:48 +0200
Date: Mon, 13 May 2002 14:44:48 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: closing non-package bug
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.28i
Sender: Marcus Brinkmann <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]

Hi,

I am closing this report as the bug is in native-install, not in MAKEDEV,
and native-install is not in any package.

Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUhttp://www.gnu.org[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: tags

2002-05-17 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> tags 146797 + sid + pending
Unknown tag/s: +.
Recognized are: patch wontfix moreinfo unreproducible fixed potato woody sid help 
security upstream pending.

Bug#146797: hurd: policy violation section 13.2
Tags added: sid, pending

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#146797: marked as done (hurd: policy violation section 13.2)

2002-05-23 Thread Debian Bug Tracking System

Your message dated Thu, 23 May 2002 23:45:53 +0200
with message-id <[EMAIL PROTECTED]>
and subject line fixed
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; 13 May 2002 05:02:35 +
>From [EMAIL PROTECTED] Mon May 13 00:02:35 2002
Return-path: <[EMAIL PROTECTED]>
Received: from (pulsar.lepton.hn.org) [62.57.122.11] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 1777yl-0001GB-00; Mon, 13 May 2002 00:02:35 -0500
Received: from zulo.lepton.hn.org ([192.168.1.5] ident=mail)
by pulsar.lepton.hn.org with esmtp (Exim 3.12 #1 (Debian))
id 1777nb-0005SZ-00
for <[EMAIL PROTECTED]>; Mon, 13 May 2002 06:51:03 +0200
Received: from guillem by zulo.lepton.hn.org with local (Exim 3.35 #1 (Debian))
id 17780h-Ro-00
for <[EMAIL PROTECTED]>; Mon, 13 May 2002 07:04:35 +0200
Date: Mon, 13 May 2002 07:04:35 +0200
From: Guillem Jover <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: hurd: policy violation section 13.2
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.28i
Sender: Guillem Jover <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]

Package: hurd
Version: 20020418-1
Severity: serious
Justification: policy violation section 13.2



diff -u /usr/src/hurd-cvs/debian/postinst debian/postinst
--- /usr/src/hurd-cvs/debian/postinst   Sat Oct  9 00:57:30 1999
+++ debian/postinst Mon May 13 06:56:53 2002
@@ -16,7 +16,7 @@
 
 # Install info files into the dir file.
 
-install-info --quiet --section "Hurd" "The Hurd" /usr/info/hurd.info.gz
+install-info --quiet --section "Hurd" "The Hurd" /usr/share/info/hurd.info.gz
 
 # Manage alternatives.
 
diff -u /usr/src/hurd-cvs/debian/rules debian/rules
--- /usr/src/hurd-cvs/debian/rules  Sat Dec 29 12:42:28 2001
+++ debian/rulesMon May 13 06:56:36 2002
@@ -27,7 +27,7 @@
 PREFIX = /usr
 BINDIR = $(PREFIX)/bin
 MANDIR = $(PREFIX)/man
-INFODIR = $(PREFIX)/info
+INFODIR = $(PREFIX)/share/info
 DOCDIR = $(PREFIX)/share/doc/$(package)
 
 #  Package specific stuff.  The idea is to try to make the rules



kind regards
guillem

---
Received: (at 146797-done) by bugs.debian.org; 23 May 2002 21:45:57 +
>From [EMAIL PROTECTED] Thu May 23 16:45:57 2002
Return-path: <[EMAIL PROTECTED]>
Received: from porta.u64.de [194.77.88.106] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 17B0PE-0005ts-00; Thu, 23 May 2002 16:45:57 -0500
Received: from (localhost) [212.23.136.22] 
by porta.u64.de with asmtp (Exim 3.12 #1 (Debian))
id 17B0u1-0006ZB-00; Fri, 24 May 2002 00:17:45 +0200
Received: from marcus by localhost with local (Exim 3.35 #1 (Debian))
id 17B0PB-0003fV-00
for <[EMAIL PROTECTED]>; Thu, 23 May 2002 23:45:53 +0200
Date: Thu, 23 May 2002 23:45:53 +0200
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: fixed
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.28i
Sender: Marcus Brinkmann <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]

Hi,

hurd 20020523 is going to be installed, which fixes this.

Thanks,
Marcus

-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann  GNUhttp://www.gnu.org[EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de

___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: Bug #162663

2002-09-28 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

> reassign 162663 gnumach-dev
Bug#162663: libc0.3-dev: depends on gnumach-dev which is priority optional
Bug reassigned from package `libc0.3-dev' to `gnumach-dev'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: Re: hurd fakeroot problem

2002-11-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 155466 hurd
Bug#155466: gcc --print-libgcc-file-name failed in fakeroot environment on hurd
Bug reassigned from package `fakeroot' to `hurd'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: not a problem for Hurd's fakeroot

2002-11-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> close 155466
Bug#155466: gcc --print-libgcc-file-name failed in fakeroot environment on hurd
Bug closed, send any further explanations to "Julien LEMOINE" <[EMAIL PROTECTED]>

> Thanks,
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#63646: marked as done (hurd: can't build without optimization)

2002-11-18 Thread Debian Bug Tracking System
Your message dated Mon, 18 Nov 2002 13:47:19 +0100
with message-id <[EMAIL PROTECTED]>
and subject line fixed
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; 5 May 2000 23:28:33 +
Received: (qmail 26345 invoked from network); 5 May 2000 23:28:33 -
Received: from sunu450.rz.ruhr-uni-bochum.de (134.147.64.5)
  by master.debian.org with SMTP; 5 May 2000 23:28:33 -
Received: (qmail 14542 invoked from network); 5 May 2000 23:28:38 -
Received: from dialppp-7-208.rz.ruhr-uni-bochum.de (HELO localhost) 
([EMAIL PROTECTED])
  by mailhost.rz.ruhr-uni-bochum.de with SMTP; 5 May 2000 23:28:38 -
Received: from marcus by localhost with local (Exim 3.12 #1 (Debian))
id 12nrI0-000382-00; Sat, 06 May 2000 01:13:44 +0200
From: [EMAIL PROTECTED]
Subject: hurd: can't build without optimization
To: [EMAIL PROTECTED]
X-Mailer: bug 3.2.9
Message-Id: <E12nrI0-000382-00@localhost>
Date: Sat, 06 May 2000 01:13:44 +0200
Organization: Marcus Brinkmann's Home

Package: hurd
Version: N/A
Severity: normal

Hi,

the Hurd doesn't build without optimization flag. Here is the first error:

make CC=i386-gnu-gcc CFLAGS="-g -Wall"

...

i386-gnu-gcc 
-Wl,-rpath-link=.:../libdiskfs/:../libfshelp/:../libftpconn/:../libhurdbugaddr/:../libihash/:../libiohelp/:../libnetfs/:../libpager/:../libpipe/:../libports/:../libps/:../libshouldbeinlibc/:../libstore/:../libthreads/:../libtrivfs/
 -g -Wall-uargp_program_bug_address -o auth \   auth.o authServer.o 
auth_replyUser.o \
  '-Wl,-(' ../libhurdbugaddr/libhurdbugaddr.so ../libports/libports.so
../libthreads/libthreads.so ../libihash/libihash.so
../libshouldbeinlibc/libshouldbeinlibc.so \
 \
  '-Wl,-)'
auth.o: In function `main':
/mnt/marcus/gnu/hurd/hurd/hurd-2421/build-without-o/auth/../../auth/auth.c:483: 
undefined reference to `__hurd_port_set'
../libthreads/libthreads.so: undefined reference to `__hurd_self_sigstate'
../libthreads/libthreads.so: undefined reference to `__thread_stack_pointer'
collect2: ld returned 1 exit status
make[1]: *** [auth] Error 1
make[1]: Leaving directory
/mnt/marcus/gnu/hurd/hurd/hurd-2421/build-without-o/auth'
make: *** [auth] Error 2

I noticed this when compiling my fatfs without optimization. The
diskfs_catch_exception was sucking in a __thread_stack_pointer symbol, just
like above.

Thanks,
Marcus

-- System Information
Debian Release: woody
Kernel Version: Linux ulysses 2.2.12 #7 Mon Sep 27 01:09:52 CEST 1999 i586 unknown

---
Received: (at 63646-done) by bugs.debian.org; 18 Nov 2002 12:47:23 +
>From [EMAIL PROTECTED] Mon Nov 18 06:47:22 2002
Return-path: <[EMAIL PROTECTED]>
Received: from porta.u64.de [194.77.88.106] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 18DlJC-0001Cr-00; Mon, 18 Nov 2002 06:47:22 -0600
Received: from (ulysses) [212.23.136.22] 
by porta.u64.de with asmtp (Exim 3.12 #1 (Debian))
id 18DmeK-0007Hb-00; Mon, 18 Nov 2002 15:13:17 +0100
Received: from marcus by ulysses with local (Exim 3.36 #1 (Debian))
id 18DlJ9-ps-00
for <[EMAIL PROTECTED]>; Mon, 18 Nov 2002 13:47:19 +0100
Date: Mon, 18 Nov 2002 13:47:19 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: fixed
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.4i
Sender: Marcus Brinkmann <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Status: No, hits=-7.2 required=5.0
tests=SIGNATURE_SHORT_DENSE,SPAM_PHRASE_00_01,USER_AGENT,
  USER_AGENT_MUTT
version=2.41
X-Spam-Level: 

I can compile fatfs outside the Hurd sources without optimization.

Thanks,
Marcus

-- 
`Rhubarb is no Egyptian god.' GNU  http://www.gnu.org[EMAIL PROTECTED]
Marcus Brinkmann  The Hurd http://www.gnu.org/software/hurd/
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de/


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Bug#107493: marked as done (Kill)

2002-11-18 Thread Debian Bug Tracking System
Your message dated Mon, 18 Nov 2002 13:51:07 +0100
with message-id <[EMAIL PROTECTED]>
and subject line we have a kill now
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; 2 Aug 2001 14:21:14 +
>From [EMAIL PROTECTED] Thu Aug 02 09:21:14 2001
Return-path: <[EMAIL PROTECTED]>
Received: from aph-aug-101-1-3-40.abo.wanadoo.fr (bassanio) [:::193.252.111.40] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 15SJLd-00044i-00; Thu, 02 Aug 2001 09:21:14 -0500
Received: from neal by bassanio with local (Exim 3.22 #1 (Debian))
id 15SJMV-0006Nz-00
for <[EMAIL PROTECTED]>; Thu, 02 Aug 2001 16:22:07 +0200
Date: Thu, 2 Aug 2001 16:22:07 +0200
From: Neal H Walfield <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Kill
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol="application/pgp-signature"; boundary="DBIVS5p969aUjpLe"
Content-Disposition: inline
User-Agent: Mutt/1.3.18i
Organization: University of Massachusetts at Lowell
X-QOTD: If one is really a superior person, the fact is likely to leak
out without too much assistance.
-- John Andrew Holmes
Sender: Neal H Walfield <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]



--DBIVS5p969aUjpLe
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Package: Hurd

We need a kill program in the Hurd; the bash builtin is not enough.
Consider the sudo command:

# sudo kill 
sudo: kill: command not found

I propose the following:

#! /bin/sh

kill ${1+$@}

Thanks.

--DBIVS5p969aUjpLe
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

iEYEARECAAYFAjtpYg4ACgkQO/YJxouvzb1X+ACdE1PZQYI9LtH7SSN+dXg0s2kX
N8wAn1kPe4BFHFsf/pQRdMOtWv98fD+m
=ctY7
-END PGP SIGNATURE-

--DBIVS5p969aUjpLe--

---
Received: (at 107493-done) by bugs.debian.org; 18 Nov 2002 12:51:13 +
>From [EMAIL PROTECTED] Mon Nov 18 06:51:10 2002
Return-path: <[EMAIL PROTECTED]>
Received: from porta.u64.de [194.77.88.106] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 18DlMr-0001Wu-00; Mon, 18 Nov 2002 06:51:10 -0600
Received: from (ulysses) [212.23.136.22] 
by porta.u64.de with asmtp (Exim 3.12 #1 (Debian))
id 18Dmi1-0007Hh-00; Mon, 18 Nov 2002 15:17:05 +0100
Received: from marcus by ulysses with local (Exim 3.36 #1 (Debian))
id 18DlMp-q2-00
for <[EMAIL PROTECTED]>; Mon, 18 Nov 2002 13:51:07 +0100
Date: Mon, 18 Nov 2002 13:51:07 +0100
From: Marcus Brinkmann <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: we have a kill now
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.4i
Sender: Marcus Brinkmann <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Status: No, hits=-7.2 required=5.0
tests=SIGNATURE_SHORT_DENSE,SPAM_PHRASE_00_01,USER_AGENT,
  USER_AGENT_MUTT
version=2.41
X-Spam-Level: 

Hi,

kill is now in the latest shellutils packages.

Thanks,
Marcus

-- 
`Rhubarb is no Egyptian god.' GNU  http://www.gnu.org[EMAIL PROTECTED]
Marcus Brinkmann  The Hurd http://www.gnu.org/software/hurd/
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de/


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd



Processed: patch

2003-03-12 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tag 184344 patch
Bug#184344: extern inlines in libpthread are not ansi compliant
There were no tags set.
Tags added: patch

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: severity

2003-03-12 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> severity 156600 serious
Bug#156600: FTBFS: hurd should build-depend on autoconf2.13
Severity set to `serious'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Bug#156600: marked as done (FTBFS: hurd should build-depend onautoconf2.13)

2003-03-13 Thread Debian Bug Tracking System
Your message dated Thu, 13 Mar 2003 19:35:57 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Debian Bug 156600
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; 14 Aug 2002 01:31:38 +
>From [EMAIL PROTECTED] Tue Aug 13 20:31:38 2002
Return-path: <[EMAIL PROTECTED]>
Received: from student.math.uwaterloo.ca [129.97.204.16] (root)
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 17en0b-0002f8-00; Tue, 13 Aug 2002 20:31:37 -0500
Received: from rees.math.uwaterloo.ca ([EMAIL PROTECTED] [129.97.204.28])
by student.math.uwaterloo.ca (8.9.3/8.9.3) with ESMTP id VAA17633
for <[EMAIL PROTECTED]>; Tue, 13 Aug 2002 21:31:35 -0400 (EDT)
Received: (from [EMAIL PROTECTED])
by rees.math.uwaterloo.ca (8.9.3/8.9.3) id VAA14409;
Tue, 13 Aug 2002 21:31:34 -0400 (EDT)
Date: Tue, 13 Aug 2002 21:31:34 -0400 (EDT)
Message-Id: <[EMAIL PROTECTED]>
X-Authentication-Warning: rees.math: ja2morri set sender to [EMAIL PROTECTED] using -f
From: James A Morrison <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: FTBFS: hurd should build-depend on autoconf2.13
Delivered-To: [EMAIL PROTECTED]


Package: hurd
severity: important

 The autoconf package no longer provides autoconf2.13.  So it can be
built from source.

James A. Morrison


---
Received: (at 156600-done) by bugs.debian.org; 13 Mar 2003 18:37:49 +
>From [EMAIL PROTECTED] Thu Mar 13 12:37:49 2003
Return-path: <[EMAIL PROTECTED]>
Received: from 80-24-13-86.uc.nombres.ttd.es (getyouriso.dyndns.org) [80.24.13.86] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 18tXaK-00076x-00; Thu, 13 Mar 2003 12:37:47 -0600
Received: from aragorn ([192.168.0.3])
by getyouriso.dyndns.org with esmtp (Exim 3.35 #1 (Debian))
id 18tZ2Z-0002hu-00; Thu, 13 Mar 2003 21:10:59 +0100
Received: from rmh by aragorn with local (Exim 3.36 #1 (Debian))
id 18tXYe-A7-00; Thu, 13 Mar 2003 19:36:00 +0100
Date: Thu, 13 Mar 2003 19:35:57 +0100
From: Robert Millan <[EMAIL PROTECTED]>
To: "Alfred M. Szmidt" <[EMAIL PROTECTED]>
Cc: [EMAIL PROTECTED]
Subject: Re: Debian Bug 156600
Message-ID: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <[EMAIL PROTECTED]>
Organisation: free as in freedom
User-Agent: Mutt/1.5.3i
Sender: Robert Millan <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Status: No, hits=-5.1 required=4.0
tests=IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,
  SIGNATURE_SHORT_SPARSE,SPAM_PHRASE_00_01,USER_AGENT,
  USER_AGENT_MUTT
version=2.44
X-Spam-Level: 

On Thu, Mar 13, 2003 at 12:04:48PM +0100, Alfred M. Szmidt wrote:
> Why did you set the severity level to serious on bug 156600?

as an FTBFS bug, it should have been set serious before..

> That bug
> report should be removed, since we do support autoconf 2.5x.  Could
> you remove it from the database?

uhm, thanks. closing it.

-- 
Robert Millan

make: *** No rule to make target `war'.  Stop.

Another world is possible - Just say no to genocide


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: Re: Bug#156600: marked as done (FTBFS: hurd shouldbuild-depend on autoconf2.13)

2003-03-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reopen 156600
Bug#156600: FTBFS: hurd should build-depend on autoconf2.13
Bug reopened, originator not changed.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: Re: Bug#184565: libc0.3: missing shm* functions (from)

2003-03-16 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 184565 hurd
Bug#184565: libc0.3: missing shm* functions (from )
Bug reassigned from package `libc0.3' to `hurd'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: reassigns for hurd-dev

2003-03-19 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 184344 hurd-dev
Bug#184344: extern inlines in libpthread are not ansi compliant
Bug reassigned from package `hurd' to `hurd-dev'.

> reassign 177486 hurd-dev
Bug#177486: POSIX semaphore
Bug reassigned from package `hurd' to `hurd-dev'.

> reassign 184565 hurd-dev
Bug#184565: libc0.3: missing shm* functions (from )
Bug reassigned from package `hurd' to `hurd-dev'.

> reassign 185450 hurd-dev
Bug#185450: missing virtual terminal ioctl's
Bug reassigned from package `hurd' to `hurd-dev'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: Re: Bug#185450: missing virtual terminal ioctl's

2003-03-19 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> retitle 185450 missing some sort of replacement for virtual terminal ioctl's
Bug#185450: missing virtual terminal ioctl's
Changed Bug title.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: Re: msgget IPC not implemented

2003-03-22 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 47998 hurd
Bug#47998: msgget IPC not implemented
Bug reassigned from package `libc0.3-dev' to `hurd'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: mistake

2003-06-05 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 195318 parted
Bug#195318: parted: Parted will not build
Bug reassigned from package `hurd' to `parted'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: Reassign from parted package to hurd package

2003-06-05 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 195318 hurd
Bug#195318: parted: Parted will not build
Bug reassigned from package `parted' to `hurd'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: Bugs in store_typed_open and store_find_class

2003-06-05 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> retitle 196085 Bugs in store_typed_open and store_find_class
Bug#196085: Device files are not accepted under the Hurd
Changed Bug title.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: real reassign from parted to hurd

2003-06-05 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 196085 hurd
Bug#196085: Device files are not accepted under the Hurd
Bug reassigned from package `parted' to `hurd'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: no patch

2003-06-05 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 196085 - patch
Bug#196085: Bugs in store_typed_open and store_find_class
Tags were: patch upstream
Tags removed: patch

> tags 196085 + sid
Bug#196085: Bugs in store_typed_open and store_find_class
Tags were: upstream
Tags added: sid

> regards
Unknown command or malformed arguments to command.

> --
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: severity

2003-06-05 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> severity 196085 normal
Bug#196085: Bugs in store_typed_open and store_find_class
Severity set to `normal'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Bug#196085: marked as forwarded (Bugs in store_typed_open andstore_find_class)

2003-06-05 Thread Debian Bug Tracking System
Your message dated 05 Jun 2003 08:10:47 +1000
with message-id <[EMAIL PROTECTED]>
has caused the Debian Bug report #196085,
regarding Bugs in store_typed_open and store_find_class
to be marked as having been forwarded to the upstream software
author(s) [EMAIL PROTECTED]

(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 196085-forwarded) by bugs.debian.org; 4 Jun 2003 22:12:17 +
>From [EMAIL PROTECTED] Wed Jun 04 17:12:16 2003
Return-path: <[EMAIL PROTECTED]>
Received: from grunt24.ihug.com.au [203.109.249.144] 
by master.debian.org with esmtp (Exim 3.35 1 (Debian))
id 19NgUS-0005zJ-00; Wed, 04 Jun 2003 17:12:16 -0500
Received: from p52-tnt2.mel.ihug.com.au [203.173.164.52] 
by grunt24.ihug.com.au with esmtp (Exim 3.35 #1 (Debian))
id 19NgUO-0008Pz-00; Thu, 05 Jun 2003 08:12:13 +1000
Subject: [Fwd: Bug#196085: Device files are not accepted under the Hurd]
From: Timshel Knoll <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; 
boundary="=-F8oqfwqXFLAZ+QFYl7z0"
Organization: Debian GNU/Linux
Message-Id: <[EMAIL PROTECTED]>
Mime-Version: 1.0
X-Mailer: Ximian Evolution 1.2.4 
Date: 05 Jun 2003 08:10:47 +1000
Delivered-To: [EMAIL PROTECTED]
X-Spam-Status: No, hits=-13.6 required=4.0
tests=BAYES_01,PGP_SIGNATURE_2,USER_AGENT_XIMIAN
autolearn=ham version=2.53-bugs.debian.org_2003_05_24
X-Spam-Level: 
X-Spam-Checker-Version: SpamAssassin 2.53-bugs.debian.org_2003_05_24 
(1.174.2.15-2003-03-30-exp)


--=-F8oqfwqXFLAZ+QFYl7z0
Content-Type: multipart/mixed; boundary="=-i+cOlNBoJ/duEZmghd9Z"


--=-i+cOlNBoJ/duEZmghd9Z
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable


--=20

--=-i+cOlNBoJ/duEZmghd9Z
Content-Disposition: inline
Content-Description: Forwarded message - Bug#196085: Device files are not
accepted under the Hurd
Content-Type: message/rfc822

Return-Path: <[EMAIL PROTECTED]>
X-Original-To: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
Received: from localhost (localhost.localnet [127.0.0.1]) by
pippin.railwayplace.lan (Postfix) with ESMTP id 45BAB241ED for
<[EMAIL PROTECTED]>; Thu,  5 Jun 2003 00:33:37 +1000 (EST)
Delivered-To: [EMAIL PROTECTED]
Received: from pop.ihug.com.au [203.109.250.50] by localhost with POP3
(fetchmail-6.2.1) for [EMAIL PROTECTED] (single-drop); Thu, 05 Jun 2003
00:33:37 +1000 (EST)
Received: (qmail 30943 invoked from network); 4 Jun 2003 14:08:49 -
Received: from grunt24.ihug.com.au (203.109.249.144) by mail3.ihug.com.au
with SMTP; 4 Jun 2003 14:08:49 -
Received: from wink.pobox.com [207.106.49.21]  by grunt24.ihug.com.au with
esmtp (Exim 3.35 #1 (Debian)) id 19NYwX-0006Iu-00; Thu, 05 Jun 2003
00:08:46 +1000
Received: from wink.pobox.com (localhost [127.0.0.1]) by wink.pobox.com
(Postfix) with ESMTP id 505351013B for <[EMAIL PROTECTED]>; Wed,  4 Jun
2003 10:05:34 -0400 (EDT)
Delivered-To: [EMAIL PROTECTED]
Received: from master.debian.org (master.debian.org [146.82.138.7]) by
wink.pobox.com (Postfix) with ESMTP id 7AC21101A1 for <[EMAIL PROTECTED]>;
Wed,  4 Jun 2003 10:04:10 -0400 (EDT)
Received: from debbugs by master.debian.org with local (Exim 3.35 1
(Debian)) id 19NYrA-0003qT-00; Wed, 04 Jun 2003 09:03:12 -0500
X-Loop: [EMAIL PROTECTED]
Subject: Bug#196085: Device files are not accepted under the Hurd
Reply-To: Ognyan Kulev <[EMAIL PROTECTED]>, [EMAIL PROTECTED]
Resent-From: Ognyan Kulev <[EMAIL PROTECTED]>
Resent-To: [EMAIL PROTECTED]
Resent-Cc: [EMAIL PROTECTED], Timshel Knoll <[EMAIL PROTECTED]>
Resent-Date: Wed, 04 Jun 2003 14:03:10 UTC
Resent-Message-ID: <[EMAIL PROTECTED]>
X-Debian-PR-Message: report 196085
X-Debian-PR-Package: parted
X-Debian-PR-Keywords: patch upstream
Received: via spool by [EMAIL PROTECTED] id=B.105473530014328 (code B
ref -1); Wed, 04 Jun 2003 14:03:10 UTC
Received: (at submit) by bugs.debian.org; 4 Jun 2003 14:01:40 +
Received: from cs.fmi.uni-sofia.bg (ds.fmi.uni-sofia.bg) [62.44.101.6]  by
master.debian.org with esmtp (Exim 3.35 1 (Debian)) id 19NYpb-0003gB-00;
Wed, 04 Jun 2003 09:01:35 -0500
Received: from fmi.uni-sofia.bg (magid.fmi.uni-sofia.bg [62.44.101.57]) by
ds.fmi.uni-sofia.bg (iPlanet Messaging Server 5.2 (built Feb 21 2002)) with
ESMTP id <[EMAIL PROTECTED]> for
[EMAIL PROTECTED]; Wed, 04 Jun 2003 16:59:19 +0300 (E. Europe Daylight
Time)
Date: Wed, 04 Jun 2003 17:03:32 +0300
From: Ognyan Kulev <[EMAIL PROTECTED]>
To: [EM

Processed: Whoops - unforward please

2003-06-05 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> notforwarded 196085
Bug#196085: Bugs in store_typed_open and store_find_class
Removed annotation that Bug had been forwarded to [EMAIL PROTECTED]

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: patch for dir-renamed.c

2003-06-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 190732 + patch
Bug#190732: hurd: non-priviledged user may crash filesystem
There were no tags set.
Tags added: patch

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: merge with another bug

2003-06-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 195360 libc0.3
Bug#195360: ext2fs.static crash
Bug reassigned from package `hurd' to `libc0.3'.

> severity 195360 wishlist
Bug#195360: ext2fs.static crash
Severity set to `wishlist'.

> merge 195360 46859
Bug#46859: hurd_thread_cancel trips assertion
Bug#195360: ext2fs.static crash
Merged 46859 195360.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: Partially fixed

2003-08-17 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 190732 + fixed
Bug#190732: hurd: non-priviledged user may crash filesystem
Tags were: patch
Tags added: fixed

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: Re: Processed: Partially fixed

2003-08-17 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tag 190732 - fixed
Bug#190732: hurd: non-priviledged user may crash filesystem
Tags were: fixed patch
Tags removed: fixed

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: trim the RC bug list

2003-09-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Packages only present in unstable
> tags 171535 sid
Bug#171535: gnue-reports: No /etc/gnue/report-filters.conf installed.
There were no tags set.
Tags added: sid

> tags 46709 sid
Bug#46709: Mach lets processes write to I/O ports
Tags were: security
Tags added: sid

> tags 162663 sid
Bug#162663: libc0.3-dev: depends on gnumach-dev which is priority optional
There were no tags set.
Tags added: sid

> tags 190232 sid
Bug#190232: gtk2-engines-xfce_2.1.0+cvs.20030421-1(mipsel/unstable): configure built 
with broken libtool.m4
There were no tags set.
Tags added: sid

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: Re: Bug#156600: Processed: Partially fixed

2003-09-14 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tag 190732 fixed-upstream
Bug#190732: hurd: non-priviledged user may crash filesystem
Tags were: patch
Tags added: fixed-upstream

> tag 156600 fixed-upstream
Bug#156600: FTBFS: hurd should build-depend on autoconf2.13
There were no tags set.
Tags added: fixed-upstream

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: pending tags

2003-10-10 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tag 190732 pending
Bug#190732: hurd: non-priviledged user may crash filesystem
Tags were: fixed-upstream patch
Tags added: pending

> tag 156600 pending
Bug#156600: FTBFS: hurd should build-depend on autoconf2.13
Tags were: fixed-upstream
Tags added: pending

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: Reassign bugs to my new email address

2003-12-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> submitter 162663 !
Bug#162663: libc0.3-dev: depends on gnumach-dev which is priority optional
Changed Bug submitter from "Brian M. Carlson" <[EMAIL PROTECTED]> to "Brian M. 
Carlson" <[EMAIL PROTECTED]>.

> submitter 181494 !
Bug#181494: GNU Free Documentation License is non-free
Changed Bug submitter from "Brian M. Carlson" <[EMAIL PROTECTED]> to "Brian M. 
Carlson" <[EMAIL PROTECTED]>.

> submitter 183860 !
Bug#183860: general: many info files have license conflicts
Changed Bug submitter from "Brian M. Carlson" <[EMAIL PROTECTED]> to "Brian M. 
Carlson" <[EMAIL PROTECTED]>.

> submitter 152473 !
Bug#152473: toolame: creates stereo only
Changed Bug submitter from "Brian M. Carlson" <[EMAIL PROTECTED]> to "Brian M. 
Carlson" <[EMAIL PROTECTED]>.

> submitter 152791 !
Bug#152791: miscfiles: typos in constitution
Changed Bug submitter from "Brian M. Carlson" <[EMAIL PROTECTED]> to "Brian M. 
Carlson" <[EMAIL PROTECTED]>.

> submitter 154428 !
Bug#154428: RFP: ae -- Anthony's Editor -- a tiny full-screen editor
Changed Bug submitter from "Brian M. Carlson" <[EMAIL PROTECTED]> to "Brian M. 
Carlson" <[EMAIL PROTECTED]>.

> submitter 160706 !
Bug#160706: RFP: buildd -- Debian package build daemon
Changed Bug submitter from "Brian M. Carlson" <[EMAIL PROTECTED]> to "Brian M. 
Carlson" <[EMAIL PROTECTED]>.

> submitter 170583 !
Bug#170583: RFP: ghdl -- a VHDL simulator for designing electronic systems
Changed Bug submitter from "Brian M. Carlson" <[EMAIL PROTECTED]> to "Brian M. 
Carlson" <[EMAIL PROTECTED]>.

> submitter 183463 !
Bug#183463: gnupg: when sending large keyrings to server, should send in many small 
pieces
Changed Bug submitter from "Brian M. Carlson" <[EMAIL PROTECTED]> to "Brian M. 
Carlson" <[EMAIL PROTECTED]>.

> submitter 169413 !
Bug#169413: kernel-patch-ck: depends on kernel-patch-scripts which is priority extra
Warning: Unknown package 'kernel-patch-ck'
Changed Bug submitter from "Brian M. Carlson" <[EMAIL PROTECTED]> to "Brian M. 
Carlson" <[EMAIL PROTECTED]>.

> thanks, control, and have a nice day
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: Not pending

2004-01-03 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 190732 -pending
Bug#190732: hurd: non-priviledged user may crash filesystem
Tags were: pending fixed-upstream patch
Tags removed: pending

> tags 163910 -pending
Bug#163910: phpgroupware-todo: Php shows a syntax error when entering the todo section
Tags were: pending woody patch
Tags removed: pending

> tags 163911 -pending
Bug#163911: phpgroupware: missing dependency: php3-xml
Tags were: pending woody
Tags removed: pending

> tags 163917 -pending
Bug#163917: phpgroupware-addressbook: Fatal error class.uiaddressbook.inc.php on line 
821
Tags were: pending woody patch
Tags removed: pending

> tags 219280 -pending
Bug#219280: inetutils-tools: all ifup/ifdown commands now failing
Tags were: pending
Tags removed: pending

> tags 156600 -pending
Bug#156600: FTBFS: hurd should build-depend on autoconf2.13
Tags were: pending fixed-upstream
Tags removed: pending

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: Re: Bug#226609: crosshurd: Problem with much memory

2004-01-07 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 226609 gnumach
Bug#226609: crosshurd: Problem with much memory
Bug reassigned from package `crosshurd' to `gnumach'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: Bug #173489: hurd: Console display errors

2004-01-22 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> submitter 173489 [EMAIL PROTECTED]
Bug#173489: hurd: Console display errors 
Changed Bug submitter from Johannes Rohr <[EMAIL PROTECTED]> to [EMAIL PROTECTED]

>
End of message, stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Processed: hurd: debian bug 173490 fixed upstream

2004-01-24 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 173490 fixed-upstream
Bug#173490: hurd: Console: Alt-Fx partially broken 
There were no tags set.
Tags added: fixed-upstream

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Bug#190732: marked as done (hurd: non-priviledged user may crash filesystem)

2004-03-01 Thread Debian Bug Tracking System
Your message dated Mon, 1 Mar 2004 19:18:16 +0100
with message-id <[EMAIL PROTECTED]>
and subject line hurd: non-priviledged user may crash filesystem
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; 25 Apr 2003 12:05:35 +
>From [EMAIL PROTECTED] Fri Apr 25 07:05:33 2003
Return-path: <[EMAIL PROTECTED]>
Received: from 80-24-13-86.uc.nombres.ttd.es (getyouriso.dyndns.org) [80.24.13.86] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 1991xK-0005xc-00; Fri, 25 Apr 2003 07:05:31 -0500
Received: from aragorn ([192.168.0.3])
by getyouriso.dyndns.org with esmtp (Exim 3.35 #1 (Debian))
id 1993A8-0001PG-00; Fri, 25 Apr 2003 15:22:48 +0200
Received: from rmh by aragorn with local (Exim 3.35 #1 (Debian))
id 1991wd-0002Nf-00; Fri, 25 Apr 2003 14:04:47 +0200
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Robert Millan <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: hurd: non-priviledged user may crash filesystem
X-Mailer: reportbug 2.10.1
Date: Fri, 25 Apr 2003 14:04:47 +0200
Message-Id: <[EMAIL PROTECTED]>
Sender: Robert Millan <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Status: No, hits=-6.0 required=4.0
tests=BAYES_01,HAS_PACKAGE
version=2.53
X-Spam-Level: 
X-Spam-Checker-Version: SpamAssassin 2.53 (1.174.2.15-2003-03-30-exp)

Package: hurd
Version: 20021118-2
Severity: critical

by exploiting this bug, a non-priviledged user is able to crash
a filesystem on which he/she has read/write access to. if that
filesystem is /, then is able to crash the whole system.

test log:

$ dd if=/dev/zero of=./fs ibs=32k count=10 ; mke2fs -o hurd ./fs
[...]
$ settrans -cafg ./mnt /hurd/ext2fs ./fs
$ cat cbtf
#!/bin/sh -x
# crashes the filesystem on which it is being run.
# (caution: if that filesystem is /, crashes the system)
rm -rf no-write dir
mkdir -p no-write/dir
chmod 555 no-write
mv no-write/dir .
$ ./cbtf
+ rm -rf no-write dir
+ mkdir -p no-write/dir
+ chmod 555 no-write
+ mv no-write/dir .
ext2fs: ../../libdiskfs/dir_renamed.c: 202: diskfs_rename_dir: Assertion `tmpnp = fnp' 
failed.
mv: cannot move `no_write/dir' to `./dir': Computer bought the farm

-- System Information:
Debian Release: testing/unstable
Architecture: hurd-i386
Kernel: GNU aragorn 0.3 GNUmach-1.2/Hurd-0.3 i386-AT386
Locale: LANG=C, LC_CTYPE=C

Versions of packages hurd depends on:
ii  libc0.3  2.3.1-5 GNU C Library: Shared libraries an
ii  libncursesw5 5.2.20020112a-8 Shared libraries for terminal hand

-- no debconf information


---
Received: (at 190732-done) by bugs.debian.org; 1 Mar 2004 18:48:16 +
>From [EMAIL PROTECTED] Mon Mar 01 10:48:16 2004
Return-path: <[EMAIL PROTECTED]>
Received: from mail.gmx.net [213.165.64.20] 
by spohr.debian.org with smtp (Exim 3.35 1 (Debian))
id 1AxsSe-00015W-00; Mon, 01 Mar 2004 10:48:16 -0800
Received: (qmail 9380 invoked by uid 65534); 1 Mar 2004 18:47:44 -
Received: from dj.stud.chemie.tu-muenchen.de (EHLO blackbird.oase.mhn.de) 
(129.187.128.65)
  by mail.gmx.net (mp005) with SMTP; 01 Mar 2004 19:47:44 +0100
X-Authenticated: #686195
Received: from mbanck by blackbird.oase.mhn.de with local (Exim 3.36 #1 (Debian))
id 1Axrzd-0004Pc-00
for <[EMAIL PROTECTED]>; Mon, 01 Mar 2004 19:18:17 +0100
Date: Mon, 1 Mar 2004 19:18:16 +0100
From: Michael Banck <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: hurd: non-priviledged user may crash filesystem
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.5.1+cvs20040105i
Sender: Michael Banck <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_01 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=0.0 required=4.0 tests=none autolearn=no 
version=2.60-bugs.debian.org_2004_03_01
X-Spam-Level: 

This bug has been fixed by the recent upload of hurd_20040301-1. One
patch has been applied to fix this bug:

2003-06-11  Ognyan Kulev  <[EMAIL PROTECTED]>

* dir-renamed.c (diskfs_rename_dir): Check permissions to remove
FROMNAME before any modification could take place

Bug#156600: marked as done (FTBFS: hurd should build-depend on autoconf2.13)

2004-03-01 Thread Debian Bug Tracking System
Your message dated Mon, 1 Mar 2004 19:22:55 +0100
with message-id <[EMAIL PROTECTED]>
and subject line FTBFS: hurd should build-depend on autoconf2.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 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; 14 Aug 2002 01:31:38 +
>From [EMAIL PROTECTED] Tue Aug 13 20:31:38 2002
Return-path: <[EMAIL PROTECTED]>
Received: from student.math.uwaterloo.ca [129.97.204.16] (root)
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 17en0b-0002f8-00; Tue, 13 Aug 2002 20:31:37 -0500
Received: from rees.math.uwaterloo.ca ([EMAIL PROTECTED] [129.97.204.28])
by student.math.uwaterloo.ca (8.9.3/8.9.3) with ESMTP id VAA17633
for <[EMAIL PROTECTED]>; Tue, 13 Aug 2002 21:31:35 -0400 (EDT)
Received: (from [EMAIL PROTECTED])
by rees.math.uwaterloo.ca (8.9.3/8.9.3) id VAA14409;
Tue, 13 Aug 2002 21:31:34 -0400 (EDT)
Date: Tue, 13 Aug 2002 21:31:34 -0400 (EDT)
Message-Id: <[EMAIL PROTECTED]>
X-Authentication-Warning: rees.math: ja2morri set sender to [EMAIL PROTECTED] using -f
From: James A Morrison <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: FTBFS: hurd should build-depend on autoconf2.13
Delivered-To: [EMAIL PROTECTED]


Package: hurd
severity: important

 The autoconf package no longer provides autoconf2.13.  So it can be
built from source.

James A. Morrison


---
Received: (at 156600-done) by bugs.debian.org; 1 Mar 2004 18:48:16 +
>From [EMAIL PROTECTED] Mon Mar 01 10:48:16 2004
Return-path: <[EMAIL PROTECTED]>
Received: from mail.gmx.de (mail.gmx.net) [213.165.64.20] 
by spohr.debian.org with smtp (Exim 3.35 1 (Debian))
id 1AxsSd-00015V-00; Mon, 01 Mar 2004 10:48:15 -0800
Received: (qmail 29859 invoked by uid 65534); 1 Mar 2004 18:47:44 -
Received: from dj.stud.chemie.tu-muenchen.de (EHLO blackbird.oase.mhn.de) 
(129.187.128.65)
  by mail.gmx.net (mp012) with SMTP; 01 Mar 2004 19:47:44 +0100
X-Authenticated: #686195
Received: from mbanck by blackbird.oase.mhn.de with local (Exim 3.36 #1 (Debian))
id 1Axs47-0004QB-00
for <[EMAIL PROTECTED]>; Mon, 01 Mar 2004 19:22:55 +0100
Date: Mon, 1 Mar 2004 19:22:55 +0100
From: Michael Banck <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: FTBFS: hurd should build-depend on autoconf2.13
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.5.1+cvs20040105i
Sender: Michael Banck <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_01 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=0.0 required=4.0 tests=none autolearn=no 
version=2.60-bugs.debian.org_2004_03_01
X-Spam-Level: 

This bug has been fixed by the recent upload of hurd_20040301-1. The
upstream source has been converted to a more recent autoconf. Further,
the hurd package no longer Build-Depends on autoconf, as the configure
script is now included in upstream CVS.


thanks,

Michael

-- 
Michael Banck
Debian Developer
[EMAIL PROTECTED]
http://www.advogato.org/person/mbanck/diary.html


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Bug#173490: marked as done (hurd: Console: Alt-Fx partially broken )

2004-03-01 Thread Debian Bug Tracking System
Your message dated Mon, 1 Mar 2004 19:25:23 +0100
with message-id <[EMAIL PROTECTED]>
and subject line hurd: Console: Alt-Fx partially broken
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; 18 Dec 2002 00:15:36 +
>From [EMAIL PROTECTED] Tue Dec 17 18:15:35 2002
Return-path: <[EMAIL PROTECTED]>
Received: from nur.comlink.org [62.145.18.230] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 18ORs7-00059Q-00; Tue, 17 Dec 2002 18:15:35 -0600
Received: from [172.185.127.86] (helo=localhost)
by nur.comlink.org with asmtp (Exim 3.30 #1)
id 18ORty-0003Er-00
for [EMAIL PROTECTED]; Wed, 18 Dec 2002 01:17:32 +0100
Received: from jr by localhost with local (Exim 3.36 #1 (Debian))
id 18ORqx-C6-00
for <[EMAIL PROTECTED]>; Wed, 18 Dec 2002 01:14:23 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]> 
Subject: hurd: Console: Alt-Fx partially broken 
X-Debbugs-CC: Johannes Rohr <[EMAIL PROTECTED]>
From: Johannes Rohr <[EMAIL PROTECTED]>
Date: 18 Dec 2002 01:14:23 +0100
Message-ID: <[EMAIL PROTECTED]>
Lines: 28
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Sender: Johannes Rohr <[EMAIL PROTECTED]>
X-RBL-Warning: (dnsbl.njabl.org) 
X-RBL-Warning: (blackholes.five-ten-sg.com) 
Delivered-To: [EMAIL PROTECTED]
X-Spam-Status: No, hits=0.6 required=5.0
tests=SPAM_PHRASE_00_01
version=2.41
X-Spam-Level: 

Package: hurd
Version: 20021118-1
Severity: minor

With the newest hurd package, using Alt-Fx to access virtual consoles
works only for the first two consoles. The rest can only be accessed
with Alt-Left|Right. 

I`m using the following drivers: vga, generic_speaker, pc_kbd

-- System Information
Debian Release: testing/unstable
Kernel Version: GNU rudi 0.3 GNUmach-1.2/Hurd-0.3 i386-AT386 unknown unknown GNU

Versions of the packages hurd depends on:
ii  libc0.32.3.1-5GNU C Library: Shared libraries and Timezone
ii  libncursesw5   5.2.20020112a- Shared libraries for terminal handling (wide

--- Begin /etc/ttys (modified conffile)
console "/libexec/getty 9600"   mach-color  on  secure trusted console
tty1"/libexec/getty 38400"  hurdon  secure  trusted console
tty2"/libexec/getty 38400"  hurdon  secure  trusted console
tty3"/libexec/getty 38400"  hurdon  secure  trusted console
tty4"/libexec/getty 38400"  hurdon  secure  trusted console
tty5"/libexec/getty 38400"  hurdon  secure  trusted console
tty6"/libexec/getty 38400"  hurdon  secure  trusted console

--- End /etc/ttys

---
Received: (at 173490-done) by bugs.debian.org; 1 Mar 2004 18:48:01 +
>From [EMAIL PROTECTED] Mon Mar 01 10:48:01 2004
Return-path: <[EMAIL PROTECTED]>
Received: from pop.gmx.de (mail.gmx.net) [213.165.64.20] 
by spohr.debian.org with smtp (Exim 3.35 1 (Debian))
id 1AxsSO-00014N-00; Mon, 01 Mar 2004 10:48:01 -0800
Received: (qmail 24292 invoked by uid 65534); 1 Mar 2004 18:47:29 -
Received: from dj.stud.chemie.tu-muenchen.de (EHLO blackbird.oase.mhn.de) 
(129.187.128.65)
  by mail.gmx.net (mp002) with SMTP; 01 Mar 2004 19:47:29 +0100
X-Authenticated: #686195
Received: from mbanck by blackbird.oase.mhn.de with local (Exim 3.36 #1 (Debian))
id 1Axs6V-0004Qc-00
for <[EMAIL PROTECTED]>; Mon, 01 Mar 2004 19:25:23 +0100
Date: Mon, 1 Mar 2004 19:25:23 +0100
From: Michael Banck <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: hurd: Console: Alt-Fx partially broken
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.5.1+cvs20040105i
Sender: Michael Banck <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_01 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=0.0 required=4.0 tests=none autolearn=no 
version=2.60-bugs.debian.org_2004_03_01
X-Spam-Level: 

This bug has been fixed by the recent upload of hurd_20040301-1. 

This is the relevant ChangeLog entry (console-client/ChangeLog):

2002-11-21  Marco Gerards  <[EMAIL PROTECTED]>

* pc-kbd.c (IS_FUNC_KEY): New macro.
(input_loop): Replaced c

Processed: hi

2004-03-20 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> here it is
Unknown command or malformed arguments to command.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd


Bug#246813: marked as done (/usr/sbin/update-rc.d conflicts with sysv-rc's)

2004-05-30 Thread Debian Bug Tracking System
Your message dated Sun, 30 May 2004 12:02:17 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#246813: fixed in hurd 20040508-1
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; 1 May 2004 12:39:52 +
>From [EMAIL PROTECTED] Sat May 01 05:39:52 2004
Return-path: <[EMAIL PROTECTED]>
Received: from 86.red-80-24-13.pooles.rima-tde.net (khazad.dyndns.org) [80.24.13.86] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BJtmZ-0004K6-00; Sat, 01 May 2004 05:39:52 -0700
Received: from rmh by khazad.dyndns.org with local (Exim 3.36 #1 (Debian))
id 1BJtaL-0001wO-00; Sat, 01 May 2004 14:27:13 +0200
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Robert Millan <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: /usr/sbin/update-rc.d conflicts with sysv-rc's
X-Mailer: reportbug 2.58
Date: Sat, 01 May 2004 14:27:12 +0200
Message-Id: <[EMAIL PROTECTED]>
Sender: <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-7.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 
X-CrossAssassin-Score: 1

Package: hurd
Severity: serious

The hurd package is providing /usr/sbin/update-rc.d, that conflicts with the
file provided in sysv-rc.

You either need a Replaces or removing that file from the hurd package. I
recommend the latter, since the standard update-rc.d in debian is more likely
to cope with debian's semantics.

This problem breaks installation from crosshurd.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.26-1-k7
Locale: LANG=C, LC_CTYPE=C

---
Received: (at 246813-close) by bugs.debian.org; 30 May 2004 16:08:19 +
>From [EMAIL PROTECTED] Sun May 30 09:08:19 2004
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BUSrD-0005cV-00; Sun, 30 May 2004 09:08:19 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1BUSlN-00020l-00; Sun, 30 May 2004 12:02:17 -0400
From: Jeff Bailey <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.49 $
Subject: Bug#246813: fixed in hurd 20040508-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sun, 30 May 2004 12:02:17 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Source: hurd
Source-Version: 20040508-1

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

hurd-dev_20040508-1_hurd-i386.deb
  to pool/main/h/hurd/hurd-dev_20040508-1_hurd-i386.deb
hurd_20040508-1.diff.gz
  to pool/main/h/hurd/hurd_20040508-1.diff.gz
hurd_20040508-1.dsc
  to pool/main/h/hurd/hurd_20040508-1.dsc
hurd_20040508-1_hurd-i386.deb
  to pool/main/h/hurd/hurd_20040508-1_hurd-i386.deb
hurd_20040508.orig.tar.gz
  to pool/main/h/hurd/hurd_20040508.orig.tar.gz



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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jeff Bailey <[EMAIL PROTECTED]> (supplier of updated hurd 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 [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat,  8 May 2004 16:55:18 -0400
Source: hurd
Binary: hurd-dev hurd
Architecture: source hurd-i386
Version: 20040508-1
Distribution: unstable
Urgency: low
Maintainer: GNU Hurd Maintainers <[EMA

Bug#173489: marked as done (hurd: Console display errors )

2004-06-11 Thread Debian Bug Tracking System
Your message dated Fri, 11 Jun 2004 08:08:06 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Cannot reproduce
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; 18 Dec 2002 00:15:33 +
>From [EMAIL PROTECTED] Tue Dec 17 18:15:33 2002
Return-path: <[EMAIL PROTECTED]>
Received: from nur.comlink.org [62.145.18.230] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 18ORs4-00058m-00; Tue, 17 Dec 2002 18:15:32 -0600
Received: from [172.185.127.86] (helo=localhost)
by nur.comlink.org with asmtp (Exim 3.30 #1)
id 18ORtv-0003Ek-00
for [EMAIL PROTECTED]; Wed, 18 Dec 2002 01:17:27 +0100
Received: from jr by localhost with local (Exim 3.36 #1 (Debian))
id 18ORpF-C2-00
for <[EMAIL PROTECTED]>; Wed, 18 Dec 2002 01:12:37 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]> 
Subject: hurd: Console display errors 
X-Debbugs-CC: Johannes Rohr,,, <[EMAIL PROTECTED]>
Message-Id: <[EMAIL PROTECTED]>
From: Johannes Rohr <[EMAIL PROTECTED]>
Date: Wed, 18 Dec 2002 01:12:37 +0100
X-RBL-Warning: (dnsbl.njabl.org) 
X-RBL-Warning: (blackholes.five-ten-sg.com) 
Delivered-To: [EMAIL PROTECTED]
X-Spam-Status: No, hits=0.6 required=5.0
tests=SPAM_PHRASE_00_01
version=2.41
X-Spam-Level: 

Package: hurd
Version: 20021118-1
Severity: normal

I`m using the new console client with the following options:

console -d vga -d generic_speaker -d pc_kbd

In mutt and some other programs I have noticed that the console
display gets scrambled when I scroll a message list or some other
vertically ordered list: The scrollbar does not move up or down but
remains fixed in one line and the other lines get scrolled through
it. This alway happens in mutt when I scroll more than one line up or
down. It is possible to update the screen by doing Ctrl-L, but still,
this is, of course, annoying.

-- System Information
Debian Release: testing/unstable
Kernel Version: GNU rudi 0.3 GNUmach-1.2/Hurd-0.3 i386-AT386 unknown unknown GNU

Versions of the packages hurd depends on:
ii  libc0.32.3.1-5GNU C Library: Shared libraries and Timezone
ii  libncursesw5   5.2.20020112a- Shared libraries for terminal handling (wide

--- Begin /etc/ttys (modified conffile)
console "/libexec/getty 9600"   mach-color  on  secure trusted console
tty1"/libexec/getty 38400"  hurdon  secure  trusted console
tty2"/libexec/getty 38400"  hurdon  secure  trusted console
tty3"/libexec/getty 38400"  hurdon  secure  trusted console
tty4"/libexec/getty 38400"  hurdon  secure  trusted console
tty5"/libexec/getty 38400"  hurdon  secure  trusted console
tty6"/libexec/getty 38400"  hurdon  secure  trusted console

--- End /etc/ttys


---
Received: (at 173489-done) by bugs.debian.org; 11 Jun 2004 15:08:11 +
>From [EMAIL PROTECTED] Fri Jun 11 08:08:11 2004
Return-path: <[EMAIL PROTECTED]>
Received: from marge.v3.ca [216.66.20.89] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BYndb-0004Ss-00; Fri, 11 Jun 2004 08:08:11 -0700
Received: from marge.v3.ca (localhost [127.0.0.1])
by marge.v3.ca (8.12.11.Beta0/8.12.11.Beta0/Debian-1) with ESMTP id 
i5BF86rj031250
(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO)
for <[EMAIL PROTECTED]>; Fri, 11 Jun 2004 08:08:06 -0700
Received: (from [EMAIL PROTECTED])
by marge.v3.ca (8.12.11.Beta0/8.12.10/Debian-0) id i5BF86aI031248
for [EMAIL PROTECTED]; Fri, 11 Jun 2004 08:08:06 -0700
X-Authentication-Warning: marge.v3.ca: jbailey set sender to [EMAIL PROTECTED] using -f
Date: Fri, 11 Jun 2004 08:08:06 -0700
From: Jeff Bailey <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Cannot reproduce
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.5.1+cvs20040105i
X-EMSscan-MailScanner: Found to be clean
X-EMSscan-MailScanner-SpamCheck: not spam, SpamAssassin (score=-9.009,
required 5, autolearn=not spam, BAYES_00 -4.90,
USER_AGENT_MUTT -4.11)
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.

Bug#253662: marked as done (hurd: Typo in postinst breaks new installs)

2004-06-11 Thread Debian Bug Tracking System
Your message dated Fri, 11 Jun 2004 15:32:26 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#253662: fixed in hurd 20040508-2
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; 10 Jun 2004 16:27:22 +
>From [EMAIL PROTECTED] Thu Jun 10 09:27:22 2004
Return-path: <[EMAIL PROTECTED]>
Received: from pop.gmx.de (mail.gmx.net) [213.165.64.20] 
by spohr.debian.org with smtp (Exim 3.35 1 (Debian))
id 1BYSOg-0006pf-00; Thu, 10 Jun 2004 09:27:22 -0700
Received: (qmail 16034 invoked by uid 65534); 10 Jun 2004 16:26:50 -
Received: from dj.stud.chemie.tu-muenchen.de (EHLO blackbird.oase.mhn.de) 
(129.187.128.65)
  by mail.gmx.net (mp010) with SMTP; 10 Jun 2004 18:26:50 +0200
X-Authenticated: #686195
Received: from mbanck by blackbird.oase.mhn.de with local (Exim 3.36 #1 (Debian))
id 1BYSIn-KF-00
for <[EMAIL PROTECTED]>; Thu, 10 Jun 2004 18:21:17 +0200
Date: Thu, 10 Jun 2004 18:21:17 +0200
From: Michael Banck <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: hurd: Typo in postinst breaks new installs
Message-ID: <[EMAIL PROTECTED]>
Reply-To: Michael Banck <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
X-Reportbug-Version: 2.61
User-Agent: Mutt/1.5.6i
Sender: Michael Banck <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: hurd
Version: 20040508
Severity: serious
Tags: patch

There's a typo in the postinst of the hurd package, making the
installation fail:

--- hurd.postinst.orig  2004-06-10 18:16:09.0 +0200
+++ hurd.postinst   2004-06-10 18:16:18.0 +0200
@@ -6,7 +6,7 @@
--install /libexec/runsystem runsystem /libexec/runsystem.gnu 20
 
 if ! grep --quiet '^login:' /etc/passwd; then
-   adduser --quiet --system --home /etc/login --gecos "Not logged in" 
--not-create-home login
+   adduser --quiet --system --home /etc/login --gecos "Not logged in" 
--no-create-home login
chsh -s /bin/bash login
 fi
 

cheers,

Michael

---
Received: (at 253662-close) by bugs.debian.org; 11 Jun 2004 19:40:18 +
>From [EMAIL PROTECTED] Fri Jun 11 12:40:18 2004
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BYrsw-0006vT-00; Fri, 11 Jun 2004 12:40:18 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1BYrlK-cW-00; Fri, 11 Jun 2004 15:32:26 -0400
From: Jeff Bailey <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.49 $
Subject: Bug#253662: fixed in hurd 20040508-2
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Fri, 11 Jun 2004 15:32:26 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 
X-CrossAssassin-Score: 2

Source: hurd
Source-Version: 20040508-2

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

hurd-dev_20040508-2_hurd-i386.deb
  to pool/main/h/hurd/hurd-dev_20040508-2_hurd-i386.deb
hurd_20040508-2.diff.gz
  to pool/main/h/hurd/hurd_20040508-2.diff.gz
hurd_20040508-2.dsc
  to pool/main/h/hurd/hurd_20040508-2.dsc
hurd_20040508-2_hurd-i386.deb
  to pool/main/h/hurd/hurd_20040508-2_hurd-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 [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Jeff Bailey <[EMAIL PROTECTED]> (supplier of updated hurd package)

(This message was generated automatically at their reques

Bug#229572: marked as done (hurd: runsystem and rc fail when not using the /usr symlink)

2004-06-11 Thread Debian Bug Tracking System
Your message dated Fri, 11 Jun 2004 15:32:26 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#229572: fixed in hurd 20040508-2
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; 25 Jan 2004 11:09:43 +
>From [EMAIL PROTECTED] Sun Jan 25 03:09:43 2004
Return-path: <[EMAIL PROTECTED]>
Received: from gluck.debian.org [192.25.206.10] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Aki99-0006wz-00; Sun, 25 Jan 2004 03:09:43 -0800
Received: from guillem by gluck.debian.org with local (Exim 3.35 1 (Debian))
id 1Aki98-0008Qx-00; Sun, 25 Jan 2004 04:09:42 -0700
Date: Sun, 25 Jan 2004 12:05:42 +0100
From: Guillem Jover <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: hurd: runsystem and rc fail when not using the /usr symlink
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="6TrnltStXW4iwmi0"
Content-Disposition: inline
User-Agent: Mutt/1.5.5.1+cvs20040105i
Sender: Guillem Jover <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_01_24 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-5.0 required=4.0 tests=HAS_PACKAGE autolearn=no 
version=2.60-bugs.debian.org_2004_01_24
X-Spam-Level: 


--6TrnltStXW4iwmi0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Package: hurd
Version: cvs 2004-01-25
Tags: patch
Severity: wishlist

Hi,

When using the Hurd without a /usr symlink the scripts runsystem and
rc located in /libexec does not work because they don't have the /usr
binary paths. Here's a patch that fixes this.

regards,
guillem

--6TrnltStXW4iwmi0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="hurd_usr_path.patch"

Index: daemons/rc.sh
===
RCS file: /cvsroot/hurd/hurd/daemons/rc.sh,v
retrieving revision 1.23
diff -u -r1.23 rc.sh
--- daemons/rc.sh   8 Jun 2001 22:07:18 -   1.23
+++ daemons/rc.sh   25 Jan 2004 08:20:58 -
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-PATH=/bin:/sbin
+PATH=/bin:/sbin:/usr/bin:/usr/sbin
 
 # Start the default pager.  It will bail if there is already one running.
 /hurd/mach-defpager
Index: daemons/runsystem.sh
===
RCS file: /cvsroot/hurd/hurd/daemons/runsystem.sh,v
retrieving revision 1.3
diff -u -r1.3 runsystem.sh
--- daemons/runsystem.sh20 Dec 2001 17:29:33 -  1.3
+++ daemons/runsystem.sh25 Jan 2004 08:20:58 -
@@ -11,7 +11,7 @@
 ### Where to find programs, etc.
 ###
 
-PATH=/bin:/sbin
+PATH=/bin:/sbin:/usr/bin:/usr/sbin
 export PATH
 
 # If we lose badly, try to exec each of these in turn.

--6TrnltStXW4iwmi0--

---
Received: (at 229572-close) by bugs.debian.org; 11 Jun 2004 19:39:01 +
>From [EMAIL PROTECTED] Fri Jun 11 12:39:01 2004
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BYrrh-0006YX-00; Fri, 11 Jun 2004 12:39:01 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1BYrlK-cU-00; Fri, 11 Jun 2004 15:32:26 -0400
From: Jeff Bailey <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.49 $
Subject: Bug#229572: fixed in hurd 20040508-2
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Fri, 11 Jun 2004 15:32:26 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Source: hurd
Source-Version: 20040508-2

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

hurd-dev_20040508-2_hurd-i386.deb
  to pool/main/h/hurd/hurd-dev_20040508-2_hurd-i386.deb
hurd_20040508-2.diff.gz
  to pool/main/h/hurd/hurd_20040508-2.diff.gz
hurd_20040508-2.dsc
  to pool/main/h/hurd/hurd_20040508-2.dsc
hurd_20040508-2_hurd-i386.deb
  to pool/main/h/hurd/hurd_20040508-2_hurd-i386.deb



A summary of the chang

Bug#254379: marked as done (hurd: no-create-home not not-create-home)

2004-06-14 Thread Debian Bug Tracking System
Your message dated Mon, 14 Jun 2004 20:16:10 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Oops
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; 14 Jun 2004 13:58:41 +
>From [EMAIL PROTECTED] Mon Jun 14 06:58:41 2004
Return-path: <[EMAIL PROTECTED]>
Received: from smtp001.mail.ukl.yahoo.com [217.12.11.32] 
by spohr.debian.org with smtp (Exim 3.35 1 (Debian))
id 1BZryy-0006fO-00; Mon, 14 Jun 2004 06:58:41 -0700
Received: from unknown (HELO ?127.0.0.1?) ([EMAIL PROTECTED] with plain)
  by smtp001.mail.ukl.yahoo.com with SMTP; 14 Jun 2004 09:53:06 -
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Michael Graham <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: hurd: no-create-home not not-create-home
Bcc: Michael Graham <[EMAIL PROTECTED]>
X-Mailer: reportbug 2.61
Date: Mon, 14 Jun 2004 10:52:52 +0100
Message-Id: <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-5.2 required=4.0 tests=BAYES_40,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: hurd
Version: 20040508-2
Severity: normal

In postinst the flag --not-create-home is passed to adduser
the correct flag is --no-create-home. At least in my version
of adduser.

Cheers,

Michael

---
Received: (at 254379-done) by bugs.debian.org; 15 Jun 2004 01:38:54 +
>From [EMAIL PROTECTED] Mon Jun 14 18:38:54 2004
Return-path: <[EMAIL PROTECTED]>
Received: from smtp004.mail.ukl.yahoo.com [217.12.11.35] 
by spohr.debian.org with smtp (Exim 3.35 1 (Debian))
id 1Ba2ub-0005Mr-00; Mon, 14 Jun 2004 18:38:53 -0700
Received: from unknown (HELO localhost) ([EMAIL PROTECTED] with login)
  by smtp004.mail.ukl.yahoo.com with SMTP; 14 Jun 2004 19:16:25 -
Date: Mon, 14 Jun 2004 20:16:10 +0100
From: Michael Graham <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Oops
Message-Id: <[EMAIL PROTECTED]>
Organization: 
X-Mailer: Sylpheed version 0.9.9-gtk2-20040229 (GTK+ 2.4.2; i686-pc-linux-gnu)
Mime-Version: 1.0
Content-Type: multipart/signed; protocol="application/pgp-signature";
 micalg="pgp-sha1";
 boundary="Signature=_Mon__14_Jun_2004_20_16_10_+0100_EdHNce6tjG=Z0EK/"
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=0.0 required=4.0 tests=none autolearn=no 
version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

--Signature=_Mon__14_Jun_2004_20_16_10_+0100_EdHNce6tjG=Z0EK/
Content-Type: text/plain; charset=US-ASCII
Content-Disposition: inline
Content-Transfer-Encoding: 7bit


Oops this is a dup of #253662. Sorry

-- 
OoberMick
(CBG walks along the road reading a comic book)

CBG:But Aquaman, you cannot marry a woman without gills, you're from
two different worlds.

(CBG sees missile approaching)

CBG:Oh, I've wasted my life.

Treehouse Of Horror VIII - The Homega Man (Episode 5F02)

--Signature=_Mon__14_Jun_2004_20_16_10_+0100_EdHNce6tjG=Z0EK/
Content-Type: application/pgp-signature

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

iD8DBQFAzfmIoD6zcgMLTPgRAoGXAJ9XQEWDjK0wFukkbzkD61lxOUWv9gCcDnEG
MDpSOcX77Fwym/8BwPG/n7o=
=o6dv
-END PGP SIGNATURE-

--Signature=_Mon__14_Jun_2004_20_16_10_+0100_EdHNce6tjG=Z0EK/--


___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/bug-hurd


Processed: /libexec/rc being not executable is important bug

2004-06-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> severity 254147 important
Bug#254147: hurd: /libexec/rc is not executable
Severity set to `important'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/bug-hurd


Processed: please redo the patch

2004-06-19 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 196913 - patch
Bug#196913: [Patch #1606] Overhaul debian/rules
Tags were: patch
Tags removed: patch

> submitter 196913 [EMAIL PROTECTED]
Bug#196913: [Patch #1606] Overhaul debian/rules
Changed Bug submitter from Robert Millan <[EMAIL PROTECTED]> to [EMAIL PROTECTED]

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/bug-hurd


Processed: priority bugs not serious per http://release.debian.org/sarge_rc_policy.txt

2004-07-07 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> severity 162663 normal
Bug#162663: libc0.3-dev: depends on gnumach-dev which is priority optional
Severity set to `normal'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/bug-hurd


Processed: patch

2004-07-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 246254 + patch
Bug#246254: FTBFS: Missing Build-Depends on flex inter alia
There were no tags set.
Tags added: patch

> thanks
Stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/bug-hurd


Processed: tagging 246254

2004-08-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

>  # tag sid since hurd isn't yet in testing and so we get it from the screen on 
> bugs.qa.d.o
> tag 246254  sid
Bug#246254: FTBFS: Missing Build-Depends on flex inter alia
Tags were: patch
Tags added: sid

>
End of message, stopping processing here.

Please contact me if you need assistance.

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



___
Bug-hurd mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/bug-hurd


  1   2   >