From owner-cvs-src-old@FreeBSD.ORG Sat Feb 6 20:27:53 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A59B11065704 for ; Sat, 6 Feb 2010 20:27:53 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 90BE88FC12 for ; Sat, 6 Feb 2010 20:27:53 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o16KRrrq077200 for ; Sat, 6 Feb 2010 20:27:53 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o16KRrRN077199 for cvs-src-old@freebsd.org; Sat, 6 Feb 2010 20:27:53 GMT (envelope-from kientzle@repoman.freebsd.org) Message-Id: <201002062027.o16KRrRN077199@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kientzle@repoman.freebsd.org using -f From: Tim Kientzle Date: Sat, 6 Feb 2010 20:27:36 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar Makefile bsdtar.c bsdtar.h read.c siginfo.c util.c write.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Feb 2010 20:27:53 -0000 kientzle 2010-02-06 20:27:36 UTC FreeBSD src repository Modified files: usr.bin/tar Makefile bsdtar.c bsdtar.h read.c util.c write.c Removed files: usr.bin/tar siginfo.c Log: SVN rev 203568 on 2010-02-06 20:27:36Z by kientzle Refactor the siginfo/sigusr1 handling. The read/write reporting is sufficiently different that it was simpler to just put separate reporting functions into read.c and write.c rather than try to have a single all-purpose reporting function. Switch to a custom function for converting int64_t to a string; in the portable version, this saves a lot of configuration headaches trying to decipher the platform printf(). Revision Changes Path 1.49 +0 -1 src/usr.bin/tar/Makefile 1.102 +46 -6 src/usr.bin/tar/bsdtar.c 1.42 +2 -5 src/usr.bin/tar/bsdtar.h 1.45 +39 -14 src/usr.bin/tar/read.c 1.5 +0 -152 src/usr.bin/tar/siginfo.c (dead) 1.29 +22 -0 src/usr.bin/tar/util.c 1.87 +37 -24 src/usr.bin/tar/write.c