diff options
| author | Cy Schubert <cy@FreeBSD.org> | 2002-03-08 14:38:43 +0000 | 
|---|---|---|
| committer | Cy Schubert <cy@FreeBSD.org> | 2002-03-08 14:38:43 +0000 | 
| commit | 100b2507d9840479acea0e864efa527d71daf1d9 (patch) | |
| tree | 3c01cdbb8672131f06a6287f80692c5368559ee4 /security/krb5-beta/files/patch-appl::telnet::telnetd::utility.c | |
| parent | Substitute .cxx files too in the nas-patch. Also add a missing backslash, (diff) | |
Removing krb5-beta port.  Krb5-beta is a "test" port to allow FreeBSD users
the opportunity to use/test the upcoming krb5 before it is released.
Krb5-1.2.4 was released over a week ago superceeding this port.  This port
will be resurrected when a new krb5-beta becomes available.
Diffstat (limited to 'security/krb5-beta/files/patch-appl::telnet::telnetd::utility.c')
| -rw-r--r-- | security/krb5-beta/files/patch-appl::telnet::telnetd::utility.c | 38 | 
1 files changed, 0 insertions, 38 deletions
| diff --git a/security/krb5-beta/files/patch-appl::telnet::telnetd::utility.c b/security/krb5-beta/files/patch-appl::telnet::telnetd::utility.c deleted file mode 100644 index 8bb656dc0673..000000000000 --- a/security/krb5-beta/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; - } -  - /* | 
