From owner-freebsd-audit Mon Nov 11 11: 0:26 2002 Delivered-To: freebsd-audit@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3723137B406 for ; Mon, 11 Nov 2002 11:00:25 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5585543E4A for ; Mon, 11 Nov 2002 11:00:24 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gABJ0Ox3072539 for ; Mon, 11 Nov 2002 11:00:24 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gABJ0Nhm072531 for audit@freebsd.org; Mon, 11 Nov 2002 11:00:23 -0800 (PST) Date: Mon, 11 Nov 2002 11:00:23 -0800 (PST) Message-Id: <200211111900.gABJ0Nhm072531@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: audit@FreeBSD.org Subject: Current problem reports assigned to you Sender: owner-freebsd-audit@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Current FreeBSD problem reports Critical problems Serious problems Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [1999/01/28] bin/9770 audit An openpty(3) auxiliary program 1 problem total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-audit" in the body of the message From owner-freebsd-audit Mon Nov 11 11:32:33 2002 Delivered-To: freebsd-audit@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1872237B404 for ; Mon, 11 Nov 2002 11:32:31 -0800 (PST) Received: from mailg.telia.com (mailg.telia.com [194.22.194.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 190A143E3B for ; Mon, 11 Nov 2002 11:32:29 -0800 (PST) (envelope-from watchman@ludd.luth.se) Received: from d1o1075.telia.com (d1o1075.telia.com [213.67.243.241]) by mailg.telia.com (8.12.5/8.12.5) with ESMTP id gABJWSZF015694 for ; Mon, 11 Nov 2002 20:32:28 +0100 (CET) X-Original-Recipient: Received: from ludd.luth.se (h75n1fls22o1075.telia.com [217.209.40.75]) by d1o1075.telia.com (8.10.2/8.10.1) with ESMTP id gABJWRs15936 for ; Mon, 11 Nov 2002 20:32:27 +0100 (CET) Message-ID: <3DD00657.5000704@ludd.luth.se> Date: Mon, 11 Nov 2002 20:34:47 +0100 From: =?ISO-8859-1?Q?Joachim_Str=F6mbergson?= Organization: =?ISO-8859-1?Q?Str=F6mbergson_Intergalactic_AB?= User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.1) Gecko/20020830 X-Accept-Language: en-US MIME-Version: 1.0 To: FreeBSD-Audit Subject: Small typofix for burncd Content-Type: multipart/mixed; boundary="------------040704030803000102090405" Sender: owner-freebsd-audit@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------040704030803000102090405 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Aloha! Included with this mail is a short fix for burncd (/usr/src/usr.sbin/burncd). The fix is simply a pedantic change from "K" to "k" for the prefix "kilo". Would appreciate comments on the patch. -- Med vänlig hälsning, Cheers! Joachim Strömbergson ============================================================================ Joachim Strömbergson - ASIC designer, nice to *cute* animals. snail: phone: mail & web: Sävenäsgatan 5A +46 31 - 27 98 47 watchman@ludd.luth.se 416 72 Göteborg +46 733 75 97 02 www.ludd.luth.se/~watchman ============================================================================ --------------040704030803000102090405 Content-Type: text/plain; name="udiff.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="udiff.txt" --- /usr/src/usr.sbin/burncd/burncd.c Sun Apr 7 17:55:33 2002 +++ burncd.c Mon Nov 11 20:29:08 2002 @@ -326,7 +326,7 @@ roundup_blocks(&tracks[notracks])) pad = 1; fprintf(stderr, - "adding type 0x%02x file %s size %d KB %d blocks %s\n", + "adding type 0x%02x file %s size %d kB %d blocks %s\n", tracks[notracks].block_type, name, (int)sb.st_size/1024, roundup_blocks(&tracks[notracks]), pad ? "(0 padded)" : ""); @@ -484,7 +484,7 @@ fprintf(stderr, "writing from stdin\n"); else fprintf(stderr, - "writing from file %s size %d KB\n", + "writing from file %s size %d kB\n", track_info->file_name, filesize); } size = 0; @@ -511,12 +511,12 @@ if (!quiet) { int pct; - fprintf(stderr, "written this track %d KB", size/1024); + fprintf(stderr, "written this track %d kB", size/1024); if (track_info->file != STDIN_FILENO && filesize) { pct = (size / 1024) * 100 / filesize; fprintf(stderr, " (%d%%)", pct); } - fprintf(stderr, " total %d KB\r", tot_size/1024); + fprintf(stderr, " total %d kB\r", tot_size/1024); } if (size >= track_info->file_size) break; --------------040704030803000102090405-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-audit" in the body of the message