Module Name: src
Committed By: martin
Date: Sun May 29 12:15:00 UTC 2022
Modified Files:
src/lib/libcrypt: crypt-argon2.c
Log Message:
Make it compile again
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/lib/libcrypt/crypt-argon2.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libcrypt/crypt-argon2.c
diff -u src/lib/libcrypt/crypt-argon2.c:1.18 src/lib/libcrypt/crypt-argon2.c:1.19
--- src/lib/libcrypt/crypt-argon2.c:1.18 Sun May 29 10:58:09 2022
+++ src/lib/libcrypt/crypt-argon2.c Sun May 29 12:15:00 2022
@@ -335,7 +335,7 @@ decode_option(argon2_context *ctx, argon
}
a = strsep(&inp, "$");
- if (a == null) {
+ if (a == NULL) {
free(in);
return -1;
}