|
Line
Link Here
|
|
-- src/lib/krb5/krb/recvauth.c |
|
|
|
Lines 76-82
Link Here
|
| 76 |
if ((retval = krb5_read_message(context, fd, &inbuf))) |
76 |
if ((retval = krb5_read_message(context, fd, &inbuf))) |
| 77 |
return(retval); |
77 |
return(retval); |
| 78 |
if (strcmp(inbuf.data, sendauth_version)) { |
78 |
if (strcmp(inbuf.data, sendauth_version)) { |
| 79 |
krb5_xfree(inbuf.data); |
|
|
| 80 |
problem = KRB5_SENDAUTH_BADAUTHVERS; |
79 |
problem = KRB5_SENDAUTH_BADAUTHVERS; |
| 81 |
} |
80 |
} |
| 82 |
krb5_xfree(inbuf.data); |
81 |
krb5_xfree(inbuf.data); |
|
Lines 90-96
Link Here
|
| 90 |
if ((retval = krb5_read_message(context, fd, &inbuf))) |
89 |
if ((retval = krb5_read_message(context, fd, &inbuf))) |
| 91 |
return(retval); |
90 |
return(retval); |
| 92 |
if (appl_version && strcmp(inbuf.data, appl_version)) { |
91 |
if (appl_version && strcmp(inbuf.data, appl_version)) { |
| 93 |
krb5_xfree(inbuf.data); |
|
|
| 94 |
if (!problem) |
92 |
if (!problem) |
| 95 |
problem = KRB5_SENDAUTH_BADAPPLVERS; |
93 |
problem = KRB5_SENDAUTH_BADAPPLVERS; |
| 96 |
} |
94 |
} |