* accessor.c (krb5int_accessor): Use krb5int_sendto instead of
authorKen Raeburn <raeburn@mit.edu>
Thu, 22 Aug 2002 22:34:47 +0000 (22:34 +0000)
committerKen Raeburn <raeburn@mit.edu>
Thu, 22 Aug 2002 22:34:47 +0000 (22:34 +0000)
krb5int_sendto_udp.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14743 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/os/ChangeLog
src/lib/krb5/os/accessor.c

index c06753e69b1ebbd606a427747a1c0a1e800eeb36..08e7f9b8d27e054e3e520af012b07dbf160c02d2 100644 (file)
@@ -33,6 +33,8 @@
        (service_fd): New function, calls one of the above two.
        (service_fds): Call it.  Use a flag word instead of separate r/w/x
        values.
+       * accessor.c (krb5int_accessor): Use krb5int_sendto instead of
+       krb5int_sendto_udp.
 
 2002-08-15  Ken Raeburn  <raeburn@mit.edu>
 
index b410f3d303f92622976c144043d0468285968833..60f0262fe876d7eb2d7a3cf7d2ac17f975b0f5c7 100644 (file)
@@ -47,7 +47,7 @@ krb5int_accessor(internals, version)
     internals_temp.krb5_hmac = krb5_hmac;
     internals_temp.md5_hash_provider = &krb5int_hash_md5;
     internals_temp.arcfour_enc_provider = &krb5int_enc_arcfour;
-    internals_temp.sendto_udp = &krb5int_sendto_udp;
+    internals_temp.sendto_udp = &krb5int_sendto;
     *internals = internals_temp;
     return 0;
   }