Remove NUL macro

This commit is contained in:
Marco Hinz
2014-04-29 21:56:49 +02:00
committed by Thiago de Arruda
parent 046debb935
commit 2e4613aecc
66 changed files with 2543 additions and 2544 deletions

View File

@@ -294,7 +294,7 @@ char_u *sha256_bytes(char_u *buf, int buf_len, char_u *salt, int salt_len)
char_u* sha256_key(char_u *buf, char_u *salt, int salt_len)
{
// No passwd means don't encrypt
if ((buf == NULL) || (*buf == NUL)) {
if ((buf == NULL) || (*buf == '\0')) {
return (char_u *)"";
}