Skip to content
Snippets Groups Projects
Commit 726bef6d authored by Philipp Schafft's avatar Philipp Schafft :lion_face:
Browse files

Fix: Corrected formating

parent 5f3efe5d
No related branches found
No related tags found
No related merge requests found
......@@ -52,10 +52,10 @@ struct acl_tag {
/* some string util functions */
static inline void __skip_spaces(const char **str)
{
register const char * p;
register const char * p;
for (p = *str; *p == ' '; p++);
*str = p;
for (p = *str; *p == ' '; p++);
*str = p;
}
int acl_set_ANY_str(acl_t *acl,
......
......@@ -22,12 +22,12 @@
#include "cfgfile.h"
typedef enum acl_policy_tag {
/* Error on function call */
ACL_POLICY_ERROR = -1,
/* Client is allowed to do operation, go ahead! */
ACL_POLICY_ALLOW = 0,
/* Client is not allowed to do so, send error! */
ACL_POLICY_DENY = 1
/* Error on function call */
ACL_POLICY_ERROR = -1,
/* Client is allowed to do operation, go ahead! */
ACL_POLICY_ALLOW = 0,
/* Client is not allowed to do so, send error! */
ACL_POLICY_DENY = 1
} acl_policy_t;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment