libfast: Fixed compiler warning.

This commit is contained in:
Tobias Brunner 2011-11-25 10:22:41 +01:00
parent 5ddeaf2884
commit b4f037bb08
1 changed files with 1 additions and 1 deletions

View File

@ -183,8 +183,8 @@ static session_entry_t *session_entry_create(private_dispatcher_t *this,
INIT(entry,
.cond = condvar_create(CONDVAR_TYPE_DEFAULT),
.session = load_session(this),
.used = time_monotonic(NULL),
.host = strdup(host),
.used = time_monotonic(NULL),
);
return entry;
}