This is an automated email from the git hooks/post-receive script.
rharwood pushed a change to branch master in repository gssproxy.
from 4f60bf0 Make proc file failure loud but nonfatal new 0c651c2 Appease gcc-7's fallthrough detection
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: proxy/src/gp_export.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
This is an automated email from the git hooks/post-receive script.
rharwood pushed a commit to branch master in repository gssproxy.
commit 0c651c21793d78fb9ee718c5861feced2fe4c2c4 Author: Robbie Harwood rharwood@redhat.com Date: Fri May 19 12:18:03 2017 -0400
Appease gcc-7's fallthrough detection
Signed-off-by: Robbie Harwood rharwood@redhat.com Reviewed-by: Simo Sorce simo@redhat.com Merges: #188 --- proxy/src/gp_export.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/proxy/src/gp_export.c b/proxy/src/gp_export.c index 3a927c9..f44da50 100644 --- a/proxy/src/gp_export.c +++ b/proxy/src/gp_export.c @@ -888,7 +888,8 @@ static uint32_t gp_export_creds_linux(uint32_t *min, gss_name_t name, if (res != NULL) { break; } - /* fall through as ret == NULL is equivalent to ENOENT */ + /* ret == NULL is equivalent to ENOENT */ + /* fall through */ case ENOENT: case ESRCH: free(pwbuf);
gss-proxy@lists.fedorahosted.org