a real problem which wasn't here...)
* write_msg.c (krb5_write_message): check the real length
variable, not the net version.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6842
dc483132-0cff-0310-8789-
dd5450dbe970
+Fri Sep 22 15:57:33 1995 Mark Eichin <eichin@cygnus.com>
+
+ * write_msg.c (krb5_write_message): check the real length
+ variable, not the net version.
+
Wed Sep 13 11:01:18 1995 Keith Vetter (keithv@fusion.com)
* Makefile.in: had to define away DBFLAGS for the PC.
DBM aname database format.
* Makefile.in - Add definitions to select aname rules.
-
Tue Jun 27 15:48:41 EDT 1995 Paul Park (pjpark@mit.edu)
* read_pwd.c(intr_routine) - Add signal name argument to signal handler
to conform to prototype.
if (krb5_net_write(context, fd, (char *)&len, 4) < 0) {
return(errno);
}
- if (len && (krb5_net_write(context, fd, outbuf->data, outbuf->length) < 0)) {
+ if (outbuf->length && (krb5_net_write(context, fd, outbuf->data, outbuf->length) < 0)) {
return(errno);
}
return(0);