reverting broad cosmetic/style change because:
- increases merge-conflicts
- increases overhead of merging upstream Vim patches
- reasons for change are ambiguous, so default to no change
This commit is contained in:
Justin M. Keyes
2014-05-01 14:00:13 -04:00
parent 3b77a62a77
commit 1b5217687a
66 changed files with 2546 additions and 2545 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 == '\0')) {
if ((buf == NULL) || (*buf == NUL)) {
return (char_u *)"";
}