static char *configfile_exists(void)
{
static char *config_file;
- struct stat statbuf;
+ struct stat statbuf;
if (!config_file) {
config_file = make_message("%s/.paraslash/audioc.conf", home);
free(home);
}
- if (!stat(config_file, &statbuf))
+ if (!stat(config_file, &statbuf))
return config_file;
return NULL;
}
goto out;
}
if (loaded < conf.bufsize_arg && FD_ISSET(fd, &rfd)) {
- len = recv_bin_buffer(fd, buf + loaded,
+ len = recv_bin_buffer(fd, buf + loaded,
conf.bufsize_arg - loaded);
if (len <= 0) {
ret = len < 0? -E_READ : 0;