X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Fplugins%2Fpasswordfd.c;h=c1f782e0c947e3fed686b26490ed2f965aced1de;hb=575895559032fc7b7ade78bc5b3afb2feb1794c3;hp=6f8bc6f0be78265838f8f5733833f4c974fe7e82;hpb=bdd34ab1f2f87acb23c6d92feee7354ac53005ff;p=ppp.git diff --git a/pppd/plugins/passwordfd.c b/pppd/plugins/passwordfd.c index 6f8bc6f..c1f782e 100644 --- a/pppd/plugins/passwordfd.c +++ b/pppd/plugins/passwordfd.c @@ -11,15 +11,23 @@ #include #include #include +#include +#include +#include +#include #include +#include +#include +#include +#include char pppd_version[] = PPPD_VERSION; static int passwdfd = -1; static char save_passwd[MAXSECRETLEN]; -static option_t options[] = { +static struct option options[] = { { "passwordfd", o_int, &passwdfd, "Receive password on this file descriptor" }, { NULL } @@ -72,7 +80,7 @@ static int pwfd_passwd (char *user, char *passwd) void plugin_init (void) { - add_options (options); + ppp_add_options (options); pap_check_hook = pwfd_check; pap_passwd_hook = pwfd_passwd;