summaryrefslogtreecommitdiffstats
path: root/src/lib/krb425/des_sched.c
diff options
context:
space:
mode:
authorPaul Borman <prb@mit.edu>1990-10-29 16:17:11 +0000
committerPaul Borman <prb@mit.edu>1990-10-29 16:17:11 +0000
commit013ad17bd66225ad95784cd4ff48b992baef1a01 (patch)
tree055144e734ddff9824fd0a9626e262def3344a50 /src/lib/krb425/des_sched.c
parent7529415daf13b125e4170a5146d06e553a0bbca5 (diff)
downloadkrb5-013ad17bd66225ad95784cd4ff48b992baef1a01.tar.gz
krb5-013ad17bd66225ad95784cd4ff48b992baef1a01.tar.xz
krb5-013ad17bd66225ad95784cd4ff48b992baef1a01.zip
*** empty log message ***
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1369 dc483132-0cff-0310-8789-dd5450dbe970
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);
+}