Skip to content

Commit

Permalink
Merge pull request #5290 from xypron/TCPSessGSSRecv
Browse files Browse the repository at this point in the history
plugins: fix return type of TCPSessGSSRecv()
  • Loading branch information
rgerhards committed Dec 11, 2023
2 parents 79f8b65 + 44b2642 commit 7cb625d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/imgssapi/imgssapi.c
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ OnSessAcceptGSS(tcpsrv_t *pThis, tcps_sess_t *pSess)

/* Replaces recv() for gssapi connections.
*/
int TCPSessGSSRecv(tcps_sess_t *pSess, void *buf, size_t buf_len, ssize_t *piLenRcvd)
rsRetVal TCPSessGSSRecv(tcps_sess_t *pSess, void *buf, size_t buf_len, ssize_t *piLenRcvd)
{
DEFiRet;
gss_buffer_desc xmit_buf, msg_buf;
Expand Down

0 comments on commit 7cb625d

Please sign in to comment.