diff options
author | Cy Schubert <cy@FreeBSD.org> | 2010-04-26 03:48:43 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2010-04-26 03:48:43 +0000 |
commit | 1a0ed7c73eff5d7b085648d8e413ef837a6de451 (patch) | |
tree | 0a745f7a94e3533610d57f4cf6976f366763d59d /security/krb5/files/patch-appl::telnet::telnetd::utility.c | |
parent | This forced commit documents the repocopy of the now defunct krb5-17 port (diff) |
Welcome the new krb5-1.8.1. Significant changes include the removal of
the MIT KRB5 applications (now in a separate tarball and port).
Notes
Notes:
svn path=/head/; revision=253264
Diffstat (limited to 'security/krb5/files/patch-appl::telnet::telnetd::utility.c')
-rw-r--r-- | security/krb5/files/patch-appl::telnet::telnetd::utility.c | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/security/krb5/files/patch-appl::telnet::telnetd::utility.c b/security/krb5/files/patch-appl::telnet::telnetd::utility.c deleted file mode 100644 index 8bb656dc0673..000000000000 --- a/security/krb5/files/patch-appl::telnet::telnetd::utility.c +++ /dev/null @@ -1,38 +0,0 @@ ---- appl/telnet/telnetd/utility.c.orig Wed Jan 9 14:26:59 2002 -+++ appl/telnet/telnetd/utility.c Fri Jan 11 13:10:33 2002 -@@ -408,18 +408,25 @@ - int - netwrite(const char *buf, size_t len) - { -- size_t remain; -+ int remaining, copied; -+ -+ remaining = BUFSIZ - (nfrontp - netobuf); -+ while (len > 0) { -+ /* Free up enough space if the room is too low*/ -+ if ((len > BUFSIZ ? BUFSIZ : len) > remaining) { -+ netflush(); -+ remaining = BUFSIZ - (nfrontp - netobuf); -+ } - -- remain = sizeof(netobuf) - (nfrontp - netobuf); -- if (remain < len) { -- netflush(); -- remain = sizeof(netobuf) - (nfrontp - netobuf); -+ /* Copy out as much as will fit */ -+ copied = remaining > len ? len : remaining; -+ memmove(nfrontp, buf, copied); -+ nfrontp += copied; -+ len -= copied; -+ remaining -= copied; -+ buf += copied; - } -- if (remain < len) -- return 0; -- memcpy(nfrontp, buf, len); -- nfrontp += len; -- return len; -+ return copied; - } - - /* |