Displaying 1 result from an estimated 1 matches for "opie_device".
Did you mean:
  open_device
  
2001 Nov 04
2
OPIE patch for current CVS
...+	    opieverify(&opie, responses[0]) == 0)
+	    return 0;
+	else
+	    opieverify(&opie, ""); /* Always need to verify to keep locks
+				      in sync */
+	return -1;
+}
+
+static void
+opie_free_ctx(void *ctx)
+{
+	/* we don't have a special context */
+}
+
+KbdintDevice opie_device = {
+	"opie",
+	opie_init_ctx,
+	opie_query,
+	opie_respond,
+	opie_free_ctx
+};
+#endif /* OPIE */
diff -x CVS -wNur ../cvs/other/openssh_cvs/auth2-chall.c openssh_cvs/auth2-chall.c
--- ../cvs/other/openssh_cvs/auth2-chall.c	Wed Oct  3 19:12:44 2001
+++ openssh_cvs/auth2-chall.c	Sun Nov...