From se@dialup124.zpr.uni-koeln.de  Mon Aug  3 09:46:56 1998
Received: from Octopussy.MI.Uni-Koeln.DE (Octopussy.MI.Uni-Koeln.DE [134.95.166.20])
          by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA22693
          for <FreeBSD-gnats-submit@freebsd.org>; Mon, 3 Aug 1998 09:46:41 -0700 (PDT)
          (envelope-from se@dialup124.zpr.uni-koeln.de)
Received: from dialup124.zpr.Uni-Koeln.DE (dialup124.zpr.Uni-Koeln.DE [134.95.219.124])
	by Octopussy.MI.Uni-Koeln.DE (8.8.8/8.8.8) with ESMTP id SAA06894
	for <FreeBSD-gnats-submit@freebsd.org>; Mon, 3 Aug 1998 18:46:24 +0200 (MET DST)
Received: (from se@localhost) by dialup124.zpr.Uni-Koeln.DE (8.8.8/8.6.9) id XAA01233; Sun, 2 Aug 1998 23:48:55 +0200 (CEST)
Message-Id: <199808022148.XAA01233@dialup124.zpr.Uni-Koeln.DE>
Date: Sun, 2 Aug 1998 23:48:55 +0200 (CEST)
From: Stefan Esser <se@dialup124.zpr.uni-koeln.de>
Reply-To: se@dialup124.zpr.uni-koeln.de
To: FreeBSD-gnats-submit@freebsd.org
Subject: missing new-line characters in messages
X-Send-Pr-Version: 3.2

>Number:         7483
>Category:       bin
>Synopsis:       missing new-line characters in messages
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Aug  3 09:50:00 PDT 1998
>Closed-Date:    Tue Aug 4 02:21:36 PDT 1998
>Last-Modified:  Tue Aug  4 02:21:47 PDT 1998
>Originator:     Stefan Esser
>Release:        FreeBSD 3.0-CURRENT i386
>Organization:
>Environment:
3.0-current with soft-update aware FSCK
>Description:
There seem to be two messages that were added with soft-updates 
support, which need a final "\n". I only observed one line of 
mangled output, but I think there is another one which suffers
from the same problem, and thus I provide a patch that covers
both.
>How-To-Repeat:
>Fix:
Index: /usr/src/sbin/fsck/pass5.c
===================================================================
RCS file: /usr/cvs/src/sbin/fsck/pass5.c,v
retrieving revision 1.12
diff -u -2 -r1.12 pass5.c
--- pass5.c	1998/06/28 19:23:02	1.12
+++ pass5.c	1998/07/03 17:20:23
@@ -325,5 +325,5 @@
 					if (cg_inosused(cg)[i] & (1 << k))
 						continue;
-					pwarn("ALLOCATED INODE %d MARKED FREE",
+					pwarn("ALLOCATED INODE %d MARKED FREE\n",
 					    c * fs->fs_ipg + i * 8 + k);
 				}
@@ -338,5 +338,5 @@
 					if (cg_blksfree(newcg)[i] & (1 << k))
 						continue;
-					pwarn("ALLOCATED FRAG %d MARKED FREE",
+					pwarn("ALLOCATED FRAG %d MARKED FREE\n",
 					    c * fs->fs_fpg + i * 8 + k);
 				}
>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: phk 
State-Changed-When: Tue Aug 4 02:21:36 PDT 1998 
State-Changed-Why:  
fixed, thanks! 
>Unformatted:
