[EMAIL PROTECTED] (Niels Möller) writes:
> A new experimental release. Most notably with an attempt to support
> kerberos passwords. This is my first ever kerberos-related hack, so
> please review the lsh-krb-checkpw.c helper program and the code
> invoking it in unix_user.c before use. It compiles and links against
> heimdal; I haven't tried MIT kerberos, and I haven't tried to actually
> run it...
I already found one bug... The call to execl() in unix_user.c is broken.
--- unix_user.c 2000/10/09 23:41:24 1.24
+++ unix_user.c 2000/10/10 00:48:52 1.25
@@ -301,7 +301,7 @@
close(in[1]);
close(null_fd);
- execl(helper, helper, user->super.name->data);
+ execl(helper, helper, user->super.name->data, NULL);
_exit(EXIT_FAILURE);
}
default:
/Niels