diff options
Diffstat (limited to 'lib/privs.c')
| -rw-r--r-- | lib/privs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/privs.c b/lib/privs.c index 5cba90839f..71416beebe 100644 --- a/lib/privs.c +++ b/lib/privs.c @@ -488,7 +488,7 @@ struct zebra_privs_t *_zprivs_raise(struct zebra_privs_t *privs, * Serialize 'raise' operations; particularly important for * OSes where privs are process-wide. */ - frr_with_mutex(&(privs->mutex)) { + frr_with_mutex (&(privs->mutex)) { /* Locate ref-counting object to use */ refs = get_privs_refs(privs); @@ -517,7 +517,7 @@ void _zprivs_lower(struct zebra_privs_t **privs) /* Serialize 'lower privs' operation - particularly important * when OS privs are process-wide. */ - frr_with_mutex(&(*privs)->mutex) { + frr_with_mutex (&(*privs)->mutex) { refs = get_privs_refs(*privs); if (--(refs->refcount) == 0) { |
