diff -r 5653a9626cc0 -r 0b8692959d37 src/server/daemon/auth.h --- a/src/server/daemon/auth.h Fri Jul 24 08:00:11 2020 +0200 +++ b/src/server/daemon/auth.h Tue Aug 25 12:07:56 2020 +0200 @@ -33,6 +33,8 @@ #include #include "../public/auth.h" +#include + #ifdef __cplusplus extern "C" { #endif @@ -48,12 +50,12 @@ typedef struct user_cache_elm UserCacheElm; struct user_cache_elm { - CachedUser *user; - UserCacheElm *next_user; // next elm in the cached user list - UcxKey key; // key to access this element - size_t slot; // slot in the map - UserCacheElm *next_elm; // next element in this map slot - time_t created; + CachedUser *user; + UserCacheElm *next_user; // next elm in the cached user list + UcxKey key; // key to access this element + size_t slot; // slot in the map + UserCacheElm *next_elm; // next element in this map slot + time_t created; }; typedef struct {