gss_krb5: Don't expect blocksize to always be 8 when calculating padding

Signed-off-by: Steve Dickson <steved@redhat.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
J. Bruce Fields 2010-03-17 13:02:48 -04:00 коммит произвёл Trond Myklebust
Родитель 7561042fb7
Коммит 54ec3d462f
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -12,10 +12,7 @@
static inline int
gss_krb5_padding(int blocksize, int length)
{
/* Most of the code is block-size independent but currently we
* use only 8: */
BUG_ON(blocksize != 8);
return 8 - (length & 7);
return blocksize - (length % blocksize);
}
static inline void