Stubbed an OS routine to satisfy the linker until we can really port it to the PC
authorKeith Vetter <keithv@fusion.com>
Wed, 8 Mar 1995 06:19:08 +0000 (06:19 +0000)
committerKeith Vetter <keithv@fusion.com>
Wed, 8 Mar 1995 06:19:08 +0000 (06:19 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5089 dc483132-0cff-0310-8789-dd5450dbe970

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

index 29483f9ea1d5ae620ecdd40ffd1d5de72364a5fc..978acecc98d9886c6e0ffe415464b2a7475a5b86 100644 (file)
@@ -1,3 +1,7 @@
+Tue Mar  7 22:15:00 1995 Keith Vetter <keithv@fusion.com>
+
+       * sendto_kdc.c: stubbed on the PC for now.
+
 Tue Mar  7 19:54:17 1995  Mark Eichin  <eichin@cygnus.com>
 
        * configure.in: take out ISODE_DEFS, ISODE_INCLUDE.
index 5b66acae42d79f0de62187918f731b9dca224a3e..d1fa774c9c5ffc92869edd1541204af250924a18 100644 (file)
@@ -206,4 +206,17 @@ krb5_sendto_kdc (context, message, realm, reply)
     }
     return retval;
 }
+#else /* MSDOS */
+
+/* Stub for now to satisfy the linker in making the DLL.
+*/
+krb5_error_code INTERFACE
+krb5_sendto_kdc (context, message, realm, reply)
+    krb5_context context;
+    const krb5_data * message;
+    const krb5_data * realm;
+    krb5_data * reply;
+{
+   return 0;
+}
 #endif