From owner-cvs-src@FreeBSD.ORG Fri Sep 17 04:39:07 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2C0316A4CE; Fri, 17 Sep 2004 04:39:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2F6A43D49; Fri, 17 Sep 2004 04:39:07 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i8H4d7L9064123; Fri, 17 Sep 2004 04:39:07 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i8H4d7pu064122; Fri, 17 Sep 2004 04:39:07 GMT (envelope-from kientzle) Message-Id: <200409170439.i8H4d7pu064122@repoman.freebsd.org> From: Tim Kientzle Date: Fri, 17 Sep 2004 04:39:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive archive_write_set_format_pax.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Sep 2004 04:39:08 -0000 kientzle 2004-09-17 04:39:07 UTC FreeBSD src repository Modified files: lib/libarchive archive_write_set_format_pax.c Log: Fix two ugly errors: 1. The correct cutoff for large uid/gid handling is 1<<18, not 1<<20. 2. Limit the uid/gid in the 'x' extension header (where numeric extensions are not permitted) to 1<<18, but use the correct value in the regular header (where numeric extensions are permitted). Thanks to: Dan Nelson MFC after: 3 days Revision Changes Path 1.18 +6 -2 src/lib/libarchive/archive_write_set_format_pax.c