This is an automated email from the git hooks/post-receive script.
rharwood pushed a change to branch master in repository gssproxy.
from df43433 Fix segfault when no config files are present new c8c5e8d Include header for writev()
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_socket.c | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-)
This is an automated email from the git hooks/post-receive script.
rharwood pushed a commit to branch master in repository gssproxy.
commit c8c5e8d2b2154d1006633634478a24bfa0b04b4d Author: Robbie Harwood rharwood@redhat.com Date: Wed May 17 12:21:37 2017 -0400
Include header for writev()
Signed-off-by: Robbie Harwood rharwood@redhat.com Reviewed-by: Simo Sorce simo@redhat.com Merges: #186 --- proxy/src/gp_socket.c | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-)
diff --git a/proxy/src/gp_socket.c b/proxy/src/gp_socket.c index 17ecf7c..29b6a44 100644 --- a/proxy/src/gp_socket.c +++ b/proxy/src/gp_socket.c @@ -1,19 +1,22 @@ /* Copyright (C) 2011,2015 the GSS-PROXY contributors, see COPYING for license */
#include "config.h" -#include <stdlib.h> -#include <unistd.h> -#include <fcntl.h> -#include <sys/types.h> -#include <sys/stat.h> -#include <sys/socket.h> -#include <sys/un.h> -#include <errno.h> -#include <netinet/in.h> + #include "gp_proxy.h" #include "gp_creds.h" #include "gp_selinux.h"
+#include <errno.h> +#include <fcntl.h> +#include <netinet/in.h> +#include <stdlib.h> +#include <sys/socket.h> +#include <sys/stat.h> +#include <sys/types.h> +#include <sys/uio.h> +#include <sys/un.h> +#include <unistd.h> + #define FRAGMENT_BIT (1 << 31)
struct unix_sock_conn {
gss-proxy@lists.fedorahosted.org