From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6682E1381F3 for ; Mon, 24 Dec 2012 11:00:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D31621C08F; Mon, 24 Dec 2012 10:59:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A43821C08F for ; Mon, 24 Dec 2012 10:59:10 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 52D1833D948 for ; Mon, 24 Dec 2012 10:59:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id CAF49E544E for ; Mon, 24 Dec 2012 10:59:06 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1356346677.77a58c7ae93d7cd5d37a7c74f4606afcee43f444.blueness@gentoo> Subject: [gentoo-commits] proj/elfix:elfix-0.7.x commit in: src/ X-VCS-Repository: proj/elfix X-VCS-Files: src/paxctl-ng.c X-VCS-Directories: src/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 77a58c7ae93d7cd5d37a7c74f4606afcee43f444 X-VCS-Branch: elfix-0.7.x Date: Mon, 24 Dec 2012 10:59:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 929e7c71-49ef-4e64-8aca-76f71b9b96aa X-Archives-Hash: e83f79d133b5a8cf6e2aea761d6f02af commit: 77a58c7ae93d7cd5d37a7c74f4606afcee43f444 Author: Anthony G. Basile gentoo org> AuthorDate: Sat Dec 22 17:47:53 2012 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Mon Dec 24 10:57:57 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=77a58c7a src/paxctl-ng.c: cosmetic cleanup with length of PT_PAX vs XATTR_PAX --- src/paxctl-ng.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/paxctl-ng.c b/src/paxctl-ng.c index d256da8..ea6115b 100644 --- a/src/paxctl-ng.c +++ b/src/paxctl-ng.c @@ -448,12 +448,12 @@ print_flags(int fd, int verbose) #ifdef PTPAX flags = get_pt_flags(fd, verbose); if( flags == UINT16_MAX ) - printf("\tPT_PAX: not found\n"); + printf("\tPT_PAX : not found\n"); else { memset(buf, 0, FLAGS_SIZE); bin2string4print(flags, buf); - printf("\tPT_PAX: %s\n", buf); + printf("\tPT_PAX : %s\n", buf); } #endif