summaryrefslogtreecommitdiffstats
path: root/src/lib/krb425/des_sched.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/krb425/des_sched.c')
-rw-r--r--src/lib/krb425/des_sched.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/lib/krb425/des_sched.c b/src/lib/krb425/des_sched.c
new file mode 100644
index 000000000..c1d13e769
--- /dev/null
+++ b/src/lib/krb425/des_sched.c
@@ -0,0 +1,35 @@
+/*
+ * $Source$
+ * $Author$
+ *
+ * Copyright 1990 by the Massachusetts Institute of Technology.
+ *
+ * For copying and distribution information, please see the file
+ * <krb5/copyright.h>.
+ *
+ * dummy function for krb425
+ */
+
+#if !defined(lint) && !defined(SABER)
+static char rcsid_des_sched_c[] =
+"$Id$";
+#endif /* !lint & !SABER */
+
+#include <krb5/copyright.h>
+#include "krb425.h"
+
+/*
+ * This is a no-op because V5 will always creates it when needed.
+ */
+int
+des_key_sched(k, s)
+des_cblock k;
+des_key_schedule s;
+{
+ /*
+ * Use the variables so saber does not get mad...
+ */
+ if (k || s)
+ return(0);
+ return(0);
+}