David Malone | 1 Sep 2002 01:16
Picon
Picon
Favicon

Re: bin/7434: Misspelling in fortune info file

On Wed, Jul 31, 2002 at 02:20:03PM -0700, AMAKAWA Shuhei wrote:
>  Why was bin/7434 closed?
>  The patch was applied only to RELENG_2_2.
>  It should be applied to the main trunk as well.

I've applied it to HEAD now.

	David.

To Unsubscribe: send mail to majordomo <at> FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message

Joe Marcus Clarke | 1 Sep 2002 03:30
Picon
Favicon

Re: bin/42272: [PATCH] Fix unresolved _thread_fd_getflags symbol in -stable

Synopsis: [PATCH] Fix unresolved _thread_fd_getflags symbol in -stable

Responsible-Changed-From-To: freebsd-bugs-≥archie
Responsible-Changed-By: marcus
Responsible-Changed-When: Sat Aug 31 18:29:17 PDT 2002
Responsible-Changed-Why: 
Over to archive, who last touched the libc_r code.

http://www.freebsd.org/cgi/query-pr.cgi?pr=42272

To Unsubscribe: send mail to majordomo <at> FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message

Dominic Marks | 1 Sep 2002 03:49

kern/42274: Convert defined variable into tuneable as suggested


>Number:         42274
>Category:       kern
>Synopsis:       Convert defined variable into tuneable as suggested
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Aug 31 18:50:01 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Dominic Marks
>Release:        FreeBSD 4.6-STABLE i386
>Organization:
National Physical Laboratory, UK
>Environment:
System: FreeBSD gallium 4.6-STABLE FreeBSD 4.6-STABLE #2:
Sun Sep 1 02:15:28 BST 2002 dom <at> gallium:/usr/obj/usr/src/sys/GENERIC i386
	
>Description:
	In kern_event.c the following line currently exists:

	#define	KN_HASHSIZE	64	/* XXX should be tunable */

(Continue reading)

Chris S.J.Peron | 1 Sep 2002 04:30

bin/42275: [patch] sftp coredump if file specified by put/get args does not exist


>Number:         42275
>Category:       bin
>Synopsis:       [patch] sftp coredump if file specified by put/get args does not exist
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Aug 31 19:10:01 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Chris S.J. Peron
>Release:        FreeBSD 4.6.2-RELEASE i386
>Organization:
Seccuris Inc
>Environment:
System: FreeBSD staff.seccuris.com 4.6.2-RELEASE FreeBSD 4.6.2-RELEASE #1: Tue Aug 20 16:12:25 CDT
2002 cperon <at> staff.seccuris.com:/usr/src/sys/compile/opcode i386

	
>Description:

	The sftp put/get commands are implemented by the process_put()
	and process_get() routines defined in the sftp-int.c source file.
(Continue reading)

El Vampiro | 1 Sep 2002 06:17
Picon

kern/42277: Several kernel panics per day with panicstr: softdep_lock: locking against myself. Further filesystems damage guaranteed.


>Number:         42277
>Category:       kern
>Synopsis:       Several kernel panics per day with panicstr: softdep_lock: locking against myself. Further
filesystems damage guaranteed.
>Confidential:   no
>Severity:       critical
>Priority:       high
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Aug 31 21:20:01 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     El Vampiro
>Release:        FreeBSD 4.6-STABLE i386
>Organization:
>Environment:
System: FreeBSD rshb.com.ru 4.6-STABLE FreeBSD 4.6-STABLE #0: Sat Aug 31 13:17:44 OMSST 2002
vampiro <at> vampiro.rsb.local:/usr/obj/usr/src/sys/NEWMONSTER  i386

Hardware: new Intel brand server

Kernel:
	machine		i386
	cpu		I586_CPU
(Continue reading)

"." | 1 Sep 2002 06:40
Picon

Re: bin/35812: strings(1) does'n print russian characters

David Malone writes:
> Synopsis: strings(1) does'n print russian characters
> 
> State-Changed-From-To: open->closed
> State-Changed-By: dwmalone
> State-Changed-When: Sat Aug 31 15:48:27 PDT 2002
> State-Changed-Why: 
> Submitter reckons PR can be closed (as a binutils issue at heart).
Without strings(1) patched?
I understand (may be) binutils issue, but
my patch bypass this issue.
(there was a little error in my previous patch)

--- usr.bin/strings/strings.c	Mon Apr 23 02:38:13 2001
+++ usr.bin/strings/strings.c	Wed Aug 22 05:05:04 2001
 <at>  <at>  -170,7 +170,7  <at>  <at> 
 		}
 start:
 		for (cnt = 0; (ch = getch()) != EOF;) {
-			if (ISSTR(ch)) {
+			if (ISSTR(ch & 0xff)) {
 				if (!cnt)
 					C = bfr;
 				*C++ = ch;
 <at>  <at>  -183,7 +183,7  <at>  <at> 
 					    foff - minlen, (char *)bfr);
 				else
 					printf("%s", bfr);
-				while ((ch = getch()) != EOF && ISSTR(ch))
+				while ((ch = getch()) != EOF && ISSTR(ch & 0xff))
(Continue reading)

"." | 1 Sep 2002 06:40
Picon

Re: bin/35812: strings(1) does'n print russian characters

The following reply was made to PR bin/35812; it has been noted by GNATS.

From: "." <at> babolo.ru
To: dwmalone <at> FreeBSD.ORG (David Malone)
Cc: gpr <at> nvnpp.vrn.ru, dwmalone <at> FreeBSD.ORG, freebsd-bugs <at> FreeBSD.ORG,
	bug-followup <at> FreeBSD.ORG
Subject: Re: bin/35812: strings(1) does'n print russian characters
Date: Sun, 1 Sep 2002 08:40:04 +0400 (MSD)

 David Malone writes:
 > Synopsis: strings(1) does'n print russian characters
 > 
 > State-Changed-From-To: open->closed
 > State-Changed-By: dwmalone
 > State-Changed-When: Sat Aug 31 15:48:27 PDT 2002
 > State-Changed-Why: 
 > Submitter reckons PR can be closed (as a binutils issue at heart).
 Without strings(1) patched?
 I understand (may be) binutils issue, but
 my patch bypass this issue.
 (there was a little error in my previous patch)

 --- usr.bin/strings/strings.c	Mon Apr 23 02:38:13 2001
 +++ usr.bin/strings/strings.c	Wed Aug 22 05:05:04 2001
  <at>  <at>  -170,7 +170,7  <at>  <at> 
  		}
  start:
  		for (cnt = 0; (ch = getch()) != EOF;) {
 -			if (ISSTR(ch)) {
 +			if (ISSTR(ch & 0xff)) {
(Continue reading)

Андрей Чернов | 1 Sep 2002 06:55
Picon
Favicon

Re: bin/35812: strings(1) does'n print russian characters

On Sun, Sep 01, 2002 at 08:40:04 +0400, "." <at> babolo.ru wrote:
> David Malone writes:
> > Synopsis: strings(1) does'n print russian characters
> > 
> > State-Changed-From-To: open->closed
> > State-Changed-By: dwmalone
> > State-Changed-When: Sat Aug 31 15:48:27 PDT 2002
> > State-Changed-Why: 
> > Submitter reckons PR can be closed (as a binutils issue at heart).
> Without strings(1) patched?
> I understand (may be) binutils issue, but
> my patch bypass this issue.
> (there was a little error in my previous patch)
> 
> --- usr.bin/strings/strings.c	Mon Apr 23 02:38:13 2001
> +++ usr.bin/strings/strings.c	Wed Aug 22 05:05:04 2001
>  <at>  <at>  -170,7 +170,7  <at>  <at> 
>  		}
>  start:
>  		for (cnt = 0; (ch = getch()) != EOF;) {
> -			if (ISSTR(ch)) {
> +			if (ISSTR(ch & 0xff)) {

This patch:
1) Applies to source code not used for ELF binaries.
2) Not change anything there (ch is already without sign extension).

--

-- 
Andrey A. Chernov
http://ache.pp.ru/
(Continue reading)

Андрей Чернов | 1 Sep 2002 07:00
Picon
Favicon

Re: bin/35812: strings(1) does'n print russian characters

The following reply was made to PR bin/35812; it has been noted by GNATS.

From: =?koi8-r?B?4c7E0sXKIP7F0s7P1w==?= <ache <at> nagual.pp.ru>
To: "." <at> babolo.ru
Cc: David Malone <dwmalone <at> FreeBSD.ORG>, gpr <at> nvnpp.vrn.ru,
	freebsd-bugs <at> FreeBSD.ORG, bug-followup <at> FreeBSD.ORG
Subject: Re: bin/35812: strings(1) does'n print russian characters
Date: Sun, 1 Sep 2002 08:55:05 +0400

 On Sun, Sep 01, 2002 at 08:40:04 +0400, "." <at> babolo.ru wrote:
 > David Malone writes:
 > > Synopsis: strings(1) does'n print russian characters
 > > 
 > > State-Changed-From-To: open->closed
 > > State-Changed-By: dwmalone
 > > State-Changed-When: Sat Aug 31 15:48:27 PDT 2002
 > > State-Changed-Why: 
 > > Submitter reckons PR can be closed (as a binutils issue at heart).
 > Without strings(1) patched?
 > I understand (may be) binutils issue, but
 > my patch bypass this issue.
 > (there was a little error in my previous patch)
 > 
 > --- usr.bin/strings/strings.c	Mon Apr 23 02:38:13 2001
 > +++ usr.bin/strings/strings.c	Wed Aug 22 05:05:04 2001
 >  <at>  <at>  -170,7 +170,7  <at>  <at> 
 >  		}
 >  start:
 >  		for (cnt = 0; (ch = getch()) != EOF;) {
 > -			if (ISSTR(ch)) {
(Continue reading)

Edwin Groothuis | 1 Sep 2002 07:35

misc/42278: mx1.freebsd.org has problems talking to ns1/ns2.secondary.com


>Number:         42278
>Category:       misc
>Synopsis:       mx1.freebsd.org has problems talking to ns1/ns2.secondary.com
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Aug 31 22:40:01 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Edwin Groothuis
>Release:        n/a
>Organization:
-
>Environment:
n/a
>Description:
Since saturday august 31th 2002, 13:45 EST (UTC+10) I'm not able to send
any more mail to and haven't received any more mail FreeBSD.org domains.

After some searching I found out that mx1.freebsd.org refuses all mail
from domains hosted on secondary.com:

(Continue reading)


Gmane