Fix typo.
authorChris Hanson <org/chris-hanson/cph>
Fri, 13 Aug 1999 18:43:05 +0000 (18:43 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 13 Aug 1999 18:43:05 +0000 (18:43 +0000)
v7/src/microcode/prbfish.c
v7/src/microcode/uxsock.c

index 43d42f136dc35e0df503ea626e6e79270df2b888..b352ed4a0e0816a583712f6fdca4dafbd7031de5 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: prbfish.c,v 1.7 1999/08/13 18:31:52 cph Exp $
+$Id: prbfish.c,v 1.8 1999/08/13 18:42:26 cph Exp $
 
 Copyright (c) 1997, 1999 Massachusetts Institute of Technology
 
@@ -88,7 +88,6 @@ ENCRYPT? says whether to encrypt (#T) or decrypt (#F).")
     error_bad_range_arg (2);
   BF_ecb_encrypt ((STRING_LOC (input_text, 0)),
                  (STRING_LOC (output_text, 0)),
-                 (STRING_LENGTH (input_text)),
                  (key_arg (3)),
                  ((BOOLEAN_ARG (4)) ? BF_ENCRYPT : BF_DECRYPT));
   PRIMITIVE_RETURN (UNSPECIFIC);
index 9727bf01fa281bdf2af034d11a385faf576fea1e..39091b0f7c384919696b679b747e65a0d7bd1ed6 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: uxsock.c,v 1.19 1999/08/13 18:29:28 cph Exp $
+$Id: uxsock.c,v 1.20 1999/08/13 18:43:05 cph Exp $
 
 Copyright (c) 1990-1999 Massachusetts Institute of Technology
 
@@ -146,7 +146,7 @@ DEFUN (OS_canonical_host_name, (host_name), CONST char * host_name)
 CONST char *
 DEFUN (OS_get_host_by_address, (host_addr), CONST char * host_addr)
 {
-  struct hostent * entry = (UX_gethostbyaddr (host_addr, AF_INET));
+  struct hostent * entry = (gethostbyaddr (host_addr, AF_INET));
   if (entry == 0)
     return (0);
   {