This commit is contained in:
Valient Gough 2016-04-26 22:56:03 -07:00
parent 057a5741e7
commit ba9b25a1d2
No known key found for this signature in database
GPG Key ID: B515DCEB95967051

View File

@ -522,8 +522,7 @@ void *encfs_init(fuse_conn_info *conn) {
return (void *)ctx;
}
void encfs_destroy(void *_ctx) {
}
void encfs_destroy(void *_ctx) {}
int main(int argc, char *argv[]) {
encfs::initLogging();
@ -737,12 +736,9 @@ static void *idleMonitor(void *_arg) {
pthread_cond_wait(&ctx->wakeupCond, &ctx->wakeupMutex);
break;
}
}
else {
RLOG(WARNING) << "Filesystem "
<< arg->opts->mountPoint
<< " inactivity detected, but still "
<< openCount
} else {
RLOG(WARNING) << "Filesystem " << arg->opts->mountPoint
<< " inactivity detected, but still " << openCount
<< " opened files";
}
}