Fix a couple of outstanding issues: update STATUS file, fix NO_FP_API problems.

Update docs, change 'ca' to use the new callback parameter. Now moved key_callback
into app.c because some other utilities will use it soon.
This commit is contained in:
Dr. Stephen Henson
1999-11-11 13:58:41 +00:00
parent 174a4a8c89
commit 53b1899e3c
8 changed files with 32 additions and 34 deletions

View File

@@ -324,3 +324,14 @@ int app_init(long mesgwin)
return(1);
}
#endif
int MS_CALLBACK key_callback(char *buf, int len, int verify, void *key)
{
int i;
if (key == NULL) return(0);
i=strlen(key);
i=(i > len)?len:i;
memcpy(buf,key,i);
return(i);
}