diff options
-rw-r--r-- | src/appl/mailquery/ChangeLog | 4 | ||||
-rw-r--r-- | src/appl/mailquery/poplib.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/appl/mailquery/ChangeLog b/src/appl/mailquery/ChangeLog index 78c869491..37897726e 100644 --- a/src/appl/mailquery/ChangeLog +++ b/src/appl/mailquery/ChangeLog @@ -1,3 +1,7 @@ +Tue Feb 14 15:30:55 1995 Chris Provenzano (proven@mit.edu) + + * poplib.c (pop_init): Call krb5_sendauth() with new calling convention. + Fri Jan 13 15:23:47 1995 Chris Provenzano (proven@mit.edu) * Added krb5_context to all krb5_routines diff --git a/src/appl/mailquery/poplib.c b/src/appl/mailquery/poplib.c index 5c840b390..35518d1e0 100644 --- a/src/appl/mailquery/poplib.c +++ b/src/appl/mailquery/poplib.c @@ -196,7 +196,7 @@ int reserved; 0, /* don't need seq # */ 0, /* don't need a subsession key */ &err_ret, - 0); /* don't need reply */ + 0, NULL); /* don't need reply */ krb5_free_principal(context, server); if (retval) { if (err_ret && err_ret->text.length) { |