Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-projects commit in pax-utils: scanelf.c
Date: Wed, 21 Dec 2011 22:17:47
Message-Id: 20111221221736.39B602004B@flycatcher.gentoo.org
1 vapier 11/12/21 22:17:36
2
3 Modified: scanelf.c
4 Log:
5 fix typo in symbol description
6
7 Revision Changes Path
8 1.238 pax-utils/scanelf.c
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/scanelf.c?rev=1.238&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/scanelf.c?rev=1.238&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-projects/pax-utils/scanelf.c?r1=1.237&r2=1.238
13
14 Index: scanelf.c
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-projects/pax-utils/scanelf.c,v
17 retrieving revision 1.237
18 retrieving revision 1.238
19 diff -u -r1.237 -r1.238
20 --- scanelf.c 21 Dec 2011 22:00:58 -0000 1.237
21 +++ scanelf.c 21 Dec 2011 22:17:36 -0000 1.238
22 @@ -1,13 +1,13 @@
23 /*
24 * Copyright 2003-2007 Gentoo Foundation
25 * Distributed under the terms of the GNU General Public License v2
26 - * $Header: /var/cvsroot/gentoo-projects/pax-utils/scanelf.c,v 1.237 2011/12/21 22:00:58 vapier Exp $
27 + * $Header: /var/cvsroot/gentoo-projects/pax-utils/scanelf.c,v 1.238 2011/12/21 22:17:36 vapier Exp $
28 *
29 * Copyright 2003-2007 Ned Ludd - <solar@g.o>
30 * Copyright 2004-2007 Mike Frysinger - <vapier@g.o>
31 */
32
33 -static const char rcsid[] = "$Id: scanelf.c,v 1.237 2011/12/21 22:00:58 vapier Exp $";
34 +static const char rcsid[] = "$Id: scanelf.c,v 1.238 2011/12/21 22:17:36 vapier Exp $";
35 const char argv0[] = "scanelf";
36
37 #include "paxinc.h"
38 @@ -1122,7 +1122,7 @@
39 * filters. There are groups of modifiers. If you don't specify a member
40 * of a group, then all types in that group are matched. The current
41 * groups and their types are:
42 - * STT group: STT_NOTYPE:n STT_OBJECT:o STT_FUNC:f SST_FILE:F
43 + * STT group: STT_NOTYPE:n STT_OBJECT:o STT_FUNC:f STT_FILE:F
44 * STB group: STB_LOCAL:l STB_GLOBAL:g STB_WEAK:w
45 * SHN group: SHN_UNDEF:u SHN_ABS:a SHN_COMMON:c {defined}:d
46 * The "defined" value in the SHN group does not correspond to a SHN_xxx define.