branch master updated: Replace /var/run -> /run in gssproxy.service
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
rharwood pushed a commit to branch master
in repository gssproxy.
The following commit(s) were added to refs/heads/master by this push:
new fc17445 Replace /var/run -> /run in gssproxy.service
fc17445 is described below
commit fc17445edc78b9393d26ca6a253fbeb9ed316c1a
Author: Orion Poplawski <orion(a)nwra.com>
AuthorDate: Wed May 8 08:31:39 2019 -0600
Replace /var/run -> /run in gssproxy.service
Signed-off-by: Orion Poplawski <orion(a)nwra.com>
Reviewed-by: Simo Sorce <simo(a)redhat.com>
Reviewed-by: Robbie Harwood <rharwood(a)redhat.com>
Merges: #249
---
systemd/gssproxy.service.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/systemd/gssproxy.service.in b/systemd/gssproxy.service.in
index ac37df6..9d3eef0 100644
--- a/systemd/gssproxy.service.in
+++ b/systemd/gssproxy.service.in
@@ -10,7 +10,7 @@ ExecStart=@sbindir@/gssproxy -D
# These two should be used with traditional UNIX forking daemons
# consult systemd.service(5) for more details
Type=forking
-PIDFile=@localstatedir(a)/run/gssproxy.pid
+PIDFile=/run/gssproxy.pid
ExecReload=/bin/kill -HUP $MAINPID
[Install]
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years
branch master updated: Update NFS service name in systemd unit
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
rharwood pushed a commit to branch master
in repository gssproxy.
The following commit(s) were added to refs/heads/master by this push:
new 1a789a6 Update NFS service name in systemd unit
1a789a6 is described below
commit 1a789a645175d5aea109a3c0831806b94337b20e
Author: Robbie Harwood <rharwood(a)redhat.com>
AuthorDate: Wed Apr 24 12:07:47 2019 -0400
Update NFS service name in systemd unit
Signed-off-by: Robbie Harwood <rharwood(a)redhat.com>
Reviewed-by: Simo Sorce <simo(a)redhat.com>
Merges: #247
---
systemd/gssproxy.service.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/systemd/gssproxy.service.in b/systemd/gssproxy.service.in
index f50f526..ac37df6 100644
--- a/systemd/gssproxy.service.in
+++ b/systemd/gssproxy.service.in
@@ -2,7 +2,7 @@
Description=GSSAPI Proxy Daemon
# GSSPROXY will not be started until syslog is
After=syslog.target
-Before=nfs-secure.service nfs-secure-server.service
+Before=rpc-gssd.service
[Service]
Environment=KRB5RCACHEDIR=/var/lib/gssproxy/rcache
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 1 month
branch master updated: Avoid uninitialized free when allocating buffers
by pagure@pagure.io
This is an automated email from the git hooks/post-receive script.
rharwood pushed a commit to branch master
in repository gssproxy.
The following commit(s) were added to refs/heads/master by this push:
new eafa3c9 Avoid uninitialized free when allocating buffers
eafa3c9 is described below
commit eafa3c9272c95646400123f8e4d6fb50cf36d36c
Author: Robbie Harwood <rharwood(a)redhat.com>
AuthorDate: Wed May 1 11:27:13 2019 -0400
Avoid uninitialized free when allocating buffers
Signed-off-by: Robbie Harwood <rharwood(a)redhat.com>
Reviewed-by: Simo Sorce <simo(a)redhat.com>
Resolves: #248
---
src/gp_export.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/gp_export.c b/src/gp_export.c
index dbfddeb..a5681c0 100644
--- a/src/gp_export.c
+++ b/src/gp_export.c
@@ -300,6 +300,7 @@ static int gp_encrypt_buffer(krb5_context context, krb5_keyblock *key,
&data_in,
&enc_handle);
if (ret) {
+ free(enc_handle.ciphertext.data);
ret = EINVAL;
goto done;
}
@@ -308,12 +309,12 @@ static int gp_encrypt_buffer(krb5_context context, krb5_keyblock *key,
enc_handle.ciphertext.data,
out);
if (ret) {
+ free(enc_handle.ciphertext.data);
goto done;
}
done:
free(padded);
- free(enc_handle.ciphertext.data);
return ret;
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
4 years, 1 month