Gentoo Archives: gentoo-commits

From: "Ned Ludd (solar)" <solar@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-projects commit in portage-utils: qlop.c
Date: Tue, 29 Dec 2009 00:42:23
Message-Id: E1NPQAF-0001ee-4T@stork.gentoo.org
1 solar 09/12/29 00:42:19
2
3 Modified: qlop.c
4 Log:
5 chroot is more fitting for the root symlink action that takes place in proc. So the name is changed from root to chroot
6
7 Revision Changes Path
8 1.48 portage-utils/qlop.c
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/qlop.c?rev=1.48&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/qlop.c?rev=1.48&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-projects/portage-utils/qlop.c?r1=1.47&r2=1.48
13
14 Index: qlop.c
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-projects/portage-utils/qlop.c,v
17 retrieving revision 1.47
18 retrieving revision 1.48
19 diff -u -r1.47 -r1.48
20 --- qlop.c 26 Dec 2009 22:33:47 -0000 1.47
21 +++ qlop.c 29 Dec 2009 00:42:18 -0000 1.48
22 @@ -1,7 +1,7 @@
23 /*
24 * Copyright 2005-2007 Gentoo Foundation
25 * Distributed under the terms of the GNU General Public License v2
26 - * $Header: /var/cvsroot/gentoo-projects/portage-utils/qlop.c,v 1.47 2009/12/26 22:33:47 solar Exp $
27 + * $Header: /var/cvsroot/gentoo-projects/portage-utils/qlop.c,v 1.48 2009/12/29 00:42:18 solar Exp $
28 *
29 * Copyright 2005-2007 Ned Ludd - <solar@g.o>
30 * Copyright 2005-2007 Mike Frysinger - <vapier@g.o>
31 @@ -52,7 +52,7 @@
32 "Read emerge logfile instead of " QLOP_DEFAULT_LOGFILE,
33 COMMON_OPTS_HELP
34 };
35 -static const char qlop_rcsid[] = "$Id: qlop.c,v 1.47 2009/12/26 22:33:47 solar Exp $";
36 +static const char qlop_rcsid[] = "$Id: qlop.c,v 1.48 2009/12/29 00:42:18 solar Exp $";
37 #define qlop_usage(ret) usage(ret, QLOP_FLAGS, qlop_long_opts, qlop_opts_help, lookup_applet_idx("qlop"))
38
39 #define QLOP_LIST 0x01
40 @@ -404,7 +404,7 @@
41 puts(NORM);
42 p = NULL;
43 if ((p = root_readlink(pid)) != NULL)
44 - printf(" root: %s%s%s\n", GREEN, p, NORM);
45 + printf(" chroot: %s%s%s\n", GREEN, p, NORM);
46 }
47 }