diff options
Diffstat (limited to 'core/linux.c')
-rw-r--r-- | core/linux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/linux.c b/core/linux.c index d60094a0e..5403990b7 100644 --- a/core/linux.c +++ b/core/linux.c @@ -81,7 +81,7 @@ const char *system_default_filename(void) static const char *path = NULL; if (!path) { const char *user = getenv("LOGNAME"); - if (same_string(user, "")) + if (empty_string(user)) user = "username"; char *filename = calloc(strlen(user) + 5, 1); strcat(filename, user); |