BSIZE -> des_BSIZE to avoid conflicts with AIX jfs/fsparam.h
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@8884 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -87,17 +87,17 @@ des_cblock (*iv);
|
||||
|
||||
if (tmpbuf == NULL)
|
||||
{
|
||||
tmpbuf=(char *)malloc(BSIZE);
|
||||
tmpbuf=(char *)malloc(des_BSIZE);
|
||||
if (tmpbuf == NULL) return(-1);
|
||||
}
|
||||
if (net == NULL)
|
||||
{
|
||||
net=(unsigned char *)malloc(BSIZE);
|
||||
net=(unsigned char *)malloc(des_BSIZE);
|
||||
if (net == NULL) return(-1);
|
||||
}
|
||||
if (unnet == NULL)
|
||||
{
|
||||
unnet=(char *)malloc(BSIZE);
|
||||
unnet=(char *)malloc(des_BSIZE);
|
||||
if (unnet == NULL) return(-1);
|
||||
}
|
||||
/* left over data from last decrypt */
|
||||
|
Reference in New Issue
Block a user