This commit is contained in:
Valient Gough
2016-04-26 22:56:03 -07:00
parent 057a5741e7
commit ba9b25a1d2

View File

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