dect
/
asterisk
Archived
13
0
Fork 0

Make res crypto less chatty (bug #2857)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4245 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2004-11-15 00:33:07 +00:00
parent 5285384c6f
commit 3810560a3f
1 changed files with 2 additions and 1 deletions

View File

@ -174,6 +174,7 @@ static struct ast_key *try_load_key (char *dir, char *fname, int ifd, int ofd, i
while(!feof(f)) {
/* Calculate a "whatever" quality md5sum of the key */
char buf[256];
memset(buf, 0, 256);
fgets(buf, sizeof(buf), f);
if (!feof(f)) {
MD5Update(&md5, buf, strlen(buf));
@ -441,7 +442,7 @@ int ast_check_signature(struct ast_key *key, char *msg, char *sig)
static void crypto_load(int ifd, int ofd)
{
struct ast_key *key, *nkey, *last;
DIR *dir;
DIR *dir = NULL;
struct dirent *ent;
int note = 0;
/* Mark all keys for deletion */