From owner-freebsd-bugs@FreeBSD.ORG Wed Jan 21 13:59:14 2015 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 41320AD0 for ; Wed, 21 Jan 2015 13:59:14 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 284223E4 for ; Wed, 21 Jan 2015 13:59:14 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0LDxE5Z015526 for ; Wed, 21 Jan 2015 13:59:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 196929] ar: fatal: Numeric user ID too large Date: Wed, 21 Jan 2015 13:59:14 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: toolchain X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: nikolay.a.petrov@intel.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2015 13:59:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=196929 --- Comment #2 from napetrov --- GNU ar just store first 6 characters with no errors: [root@BSD ~]# echo 123 > tst.txt [root@BSD ~]# chown napetrov tst.txt [root@BSD ~]# ls -anl tst.txt -rw-r--r-- 1 11299695 0 4 Dec 10 14:15 tst.txt [root@BSD ~]# /usr/local/bin/ar -rc test.a tst.txt [root@BSD ~]# /usr/local/bin/ar -V GNU ar (GNU Binutils) 2.25 Copyright (C) 2014 Free Software Foundation, Inc. This program is free software; you may redistribute it under the terms of the GNU General Public License version 3 or (at your option) any later version. This program has absolutely no warranty. [root@BSD ~]# strings test.a ! tst.txt/ 1418195726 1129960 100644 4 ` [root@BSD ~]# cat test.a | od -c 0000000 ! < a r c h > \n t s t . t x t / 0000020 1 4 1 8 1 9 5 7 0000040 2 6 1 1 2 9 9 6 0 0000060 1 0 0 6 4 4 4 0000100 ` \n 1 2 3 \n 0000110 -- You are receiving this mail because: You are the assignee for the bug.