diff -r ddfead6ea863 -r 4784c14aa639 src/server/daemon/auth.h --- a/src/server/daemon/auth.h Sun Aug 23 22:02:01 2020 +0200 +++ b/src/server/daemon/auth.h Sun Aug 23 23:04:17 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 {