*/
/*
- * $Id: gssapi_link.c,v 1.16 2011/01/11 23:47:13 tbox Exp $
+ * $Id: gssapi_link.c,v 1.17 2011/03/28 05:32:16 marka Exp $
*/
#include <config.h>
* allocated space.
*/
isc_buffer_putmem(sig, gsig.value, gsig.length);
- if (gsig.length != 0)
+ if (gsig.length != 0U)
gss_release_buffer(&minor, &gsig);
return (ISC_R_SUCCESS);
isc_result_t result;
len = strlen(keystr);
- if ((len % 4) != 0)
+ if ((len % 4) != 0U)
return (ISC_R_BADBASE64);
len = (len / 4) * 3;
major, minor);
return (ISC_R_FAILURE);
}
- if (gssbuffer.length == 0)
+ if (gssbuffer.length == 0U)
return (ISC_R_FAILURE);
len = ((gssbuffer.length + 2)/3) * 4;
buf = isc_mem_get(mctx, len);