Previous change that changed SECRET to a string broke userland compiles

This commit is contained in:
Scott Haseley 2016-02-12 00:14:51 -05:00
parent a740c60f6d
commit 5f7d1f5611

View File

@ -16,7 +16,7 @@ tprintf(const char *fmt, ...)
int chars;
va_list ap;
if (SECRET != 0) {
if (strcmp(SECRET, "") != 0) {
return 0;
}
@ -34,7 +34,7 @@ nprintf(const char *fmt, ...)
int chars;
va_list ap;
if (SECRET == 0) {
if (strcmp(SECRET, "") == 0) {
return 0;
}
@ -52,8 +52,8 @@ printsf(const char *fmt, ...)
int chars;
va_list ap;
if (SECRET != 0) {
printf("%llu: ", (unsigned long long)SECRET);
if (strcmp(SECRET, "") != 0) {
printf("%s: ", SECRET);
}
va_start(ap, fmt);
chars = vprintf(fmt, ap);