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 C065F138247 for ; Sat, 11 Jan 2014 00:28:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EE036E0CAA; Sat, 11 Jan 2014 00:28:51 +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 8C9E6E0CAA for ; Sat, 11 Jan 2014 00:28:51 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B996B33F6C7 for ; Sat, 11 Jan 2014 00:28:50 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id 896AF2004C; Sat, 11 Jan 2014 00:28:49 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-projects commit in pax-utils: scanelf.c X-VCS-Repository: gentoo-projects X-VCS-Files: scanelf.c X-VCS-Directories: pax-utils X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140111002849.896AF2004C@flycatcher.gentoo.org> Date: Sat, 11 Jan 2014 00:28:49 +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: e5030e5f-e427-4059-9b04-422b8ce8b30a X-Archives-Hash: a5357186cb135ae7d301aecb78d5a7e6 vapier 14/01/11 00:28:49 Modified: scanelf.c Log: scanelf: fix comment in middle of define Revision Changes Path 1.260 pax-utils/scanelf.c file : http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/scanelf.c?rev=1.260&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/scanelf.c?rev=1.260&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/scanelf.c?r1=1.259&r2=1.260 Index: scanelf.c =================================================================== RCS file: /var/cvsroot/gentoo-projects/pax-utils/scanelf.c,v retrieving revision 1.259 retrieving revision 1.260 diff -u -r1.259 -r1.260 --- scanelf.c 14 Aug 2013 21:09:57 -0000 1.259 +++ scanelf.c 11 Jan 2014 00:28:49 -0000 1.260 @@ -1,13 +1,13 @@ /* * Copyright 2003-2012 Gentoo Foundation * Distributed under the terms of the GNU General Public License v2 - * $Header: /var/cvsroot/gentoo-projects/pax-utils/scanelf.c,v 1.259 2013/08/14 21:09:57 vapier Exp $ + * $Header: /var/cvsroot/gentoo-projects/pax-utils/scanelf.c,v 1.260 2014/01/11 00:28:49 vapier Exp $ * * Copyright 2003-2012 Ned Ludd - * Copyright 2004-2012 Mike Frysinger - */ -static const char rcsid[] = "$Id: scanelf.c,v 1.259 2013/08/14 21:09:57 vapier Exp $"; +static const char rcsid[] = "$Id: scanelf.c,v 1.260 2014/01/11 00:28:49 vapier Exp $"; const char argv0[] = "scanelf"; #include "paxinc.h" @@ -379,10 +379,10 @@ char *str; \ if ((void*)strtbl > elf->data_end) \ goto skip_this_shdr##B; \ - /* let's flag -w/+x object files since the final ELF will most likely - * need write access to the stack (who doesn't !?). so the combined - * output will bring in +w automatically and that's bad. - */ + /* let's flag -w/+x object files since the final ELF will most likely \ + * need write access to the stack (who doesn't !?). so the combined \ + * output will bring in +w automatically and that's bad. \ + */ \ check_flags = /*SHF_WRITE|*/SHF_EXECINSTR; \ for (i = 0; i < EGET(ehdr->e_shnum); ++i) { \ if (EGET(shdr[i].sh_type) != SHT_PROGBITS) continue; \