From decd0771eedee95d9bd7ac846814a4e89c155d7d Mon Sep 17 00:00:00 2001 From: James Golovich Date: Thu, 8 Jul 2004 17:08:38 +0000 Subject: [PATCH] Cleanup recent manager changes. We have a doc/CODING-GUIDELINES file for a reason. Make sure all future patches follow the guidelines. Some of the problems with this include: Unnecessary whitespace changes Use of spaces instead of tabs Code formatting that doesn't follow the published guidelines Nested statements without braces Comment problems git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3401 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- manager.c | 50 ++++++++++++++++++++++++++------------------------ 1 file changed, 26 insertions(+), 24 deletions(-) diff --git a/manager.c b/manager.c index d534197f66..3e848499fd 100755 --- a/manager.c +++ b/manager.c @@ -274,21 +274,22 @@ void astman_send_ack(struct mansession *s, struct message *m, char *msg) ast_instring("this|that|more","this",',') == 1; feel free to move this to app.c -anthm */ -static int ast_instring(char *bigstr, char *smallstr, char delim) { - char *val = bigstr, *next; +static int ast_instring(char *bigstr, char *smallstr, char delim) +{ + char *val = bigstr, *next; - do { - if ( ( next = strchr ( val, delim ) ) ) - if ( ! strncmp ( val , smallstr , ( next - val ) ) ) - return 1; - else - continue; - else - return ! strcmp ( smallstr , val ); + do { + if ((next = strchr(val, delim))) { + if (!strncmp(val, smallstr, (next - val))) + return 1; + else + continue; + } else + return !strcmp(smallstr, val); - } while ( * ( val = ( next + 1 ) ) ) ; + } while (*(val = (next + 1))); - return 0; + return 0; } static int get_perm(char *instr) @@ -305,14 +306,15 @@ static int get_perm(char *instr) return ret; } -static int ast_is_number(char *string) { +static int ast_is_number(char *string) +{ int ret = 1, x = 0; - if(!string) + if (!string) return 0; - for (x=0; x < strlen(string) ; x++ ) { - if (! (string[x] >= 48 && string[x] <= 57)) { + for (x=0; x < strlen(string); x++) { + if (!(string[x] >= 48 && string[x] <= 57)) { ret = 0; break; } @@ -321,15 +323,15 @@ static int ast_is_number(char *string) { return ret ? atoi(string) : 0; } - -static int ast_strings_to_mask(char *string) { +static int ast_strings_to_mask(char *string) +{ int x = 0, ret = -1; x = ast_is_number(string); - if(x) + if (x) ret = x; - else if (! string || ast_strlen_zero(string)) + else if (!string || ast_strlen_zero(string)) ret = -1; else if (!strcasecmp(string, "off") || ast_false(string)) ret = 0; @@ -337,13 +339,13 @@ static int ast_strings_to_mask(char *string) { ret = -1; else { ret = 0; - for (x=0; x