diff options
author | José Bollo <jose.bollo@iot.bzh> | 2018-07-12 11:22:14 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2018-07-13 12:19:11 +0200 |
commit | 93d8d6f69399dacbb43c0780ebccc378b4f44880 (patch) | |
tree | d34a7947b0e6882de75591a1e66c66f678c061fe /src/afb-session.c | |
parent | 6c003255918fc85b693a4b0becf45016d1282dfe (diff) |
afb-supervision: Remove dependency to external
Also some cleaning in use of extern to allow
accurate grep.
Removing extern is better for linking and for
structuration.
Change-Id: I8121c4b9b34fa2737bffd2ecbe170d04d1d60ad1
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-session.c')
-rw-r--r-- | src/afb-session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afb-session.c b/src/afb-session.c index 16fc69bb..adfed2ad 100644 --- a/src/afb-session.c +++ b/src/afb-session.c @@ -59,7 +59,7 @@ struct cookie struct afb_session { struct afb_session *next; /**< link to the next */ - unsigned refcount; /**< external reference count of the session */ + unsigned refcount; /**< count of reference to the session */ int timeout; /**< timeout of the session */ time_t expiration; /**< expiration time of the token */ pthread_mutex_t mutex; /**< mutex of the session */ |