public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/elfix:elfix-0.7.x commit in: src/
@ 2012-12-24 10:59 Anthony G. Basile
  0 siblings, 0 replies; 3+ messages in thread
From: Anthony G. Basile @ 2012-12-24 10:59 UTC (permalink / raw
  To: gentoo-commits

commit:     f9f2caa45072625b9a6f6f9e9eaae0fc9cdf610c
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 21 20:36:02 2012 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Dec 24 10:57:56 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=f9f2caa4

src/paxctl-ng.c: add missing report of -d flag in print_help_exit()

---
 src/paxctl-ng.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/src/paxctl-ng.c b/src/paxctl-ng.c
index 1e5b663..d256da8 100644
--- a/src/paxctl-ng.c
+++ b/src/paxctl-ng.c
@@ -94,6 +94,7 @@ print_help_exit(char *v)
 #ifdef XTPAX
 		"             : -C create XATTR_PAX with most secure setting\n"
 		"             : -c create XATTR_PAX all default settings\n"
+		"             : -d delete XATTR_PAX field\n"
 #endif
 #if defined(PTPAX) && defined(XTPAX)
 		"             : -F copy PT_PAX to XATTR_PAX\n"


^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [gentoo-commits] proj/elfix:elfix-0.7.x commit in: src/
@ 2012-12-24 10:59 Anthony G. Basile
  0 siblings, 0 replies; 3+ messages in thread
From: Anthony G. Basile @ 2012-12-24 10:59 UTC (permalink / raw
  To: gentoo-commits

commit:     77a58c7ae93d7cd5d37a7c74f4606afcee43f444
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 22 17:47:53 2012 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> 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
 


^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [gentoo-commits] proj/elfix:elfix-0.7.x commit in: src/
@ 2012-12-29  1:16 Anthony G. Basile
  0 siblings, 0 replies; 3+ messages in thread
From: Anthony G. Basile @ 2012-12-29  1:16 UTC (permalink / raw
  To: gentoo-commits

commit:     513da4d2b13a4357282ee9509c83c5ac470564a2
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 28 23:06:50 2012 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sat Dec 29 01:12:42 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=513da4d2

src/paxctl-ng.c: fix uninitialized value for xt_flags

---
 src/paxctl-ng.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/paxctl-ng.c b/src/paxctl-ng.c
index 6dbcf4c..dcfdde9 100644
--- a/src/paxctl-ng.c
+++ b/src/paxctl-ng.c
@@ -707,6 +707,9 @@ create_xt_flags(int fd, int cp_flags)
 			PF_NOEMUTRAMP | PF_RANDMMAP ;
 	else if(cp_flags == CREATE_XT_FLAGS_DEFAULT)
 		xt_flags = 0;
+	else
+		//Why are we here?
+		return EXIT_FAILURE;
 
 	memset(buf, 0, FLAGS_SIZE);
 	bin2string(xt_flags, buf);


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-12-29  1:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-24 10:59 [gentoo-commits] proj/elfix:elfix-0.7.x commit in: src/ Anthony G. Basile
  -- strict thread matches above, loose matches on Subject: below --
2012-12-24 10:59 Anthony G. Basile
2012-12-29  1:16 Anthony G. Basile

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox