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
This commit is contained in:
James Golovich
2004-07-08 17:08:38 +00:00
parent 68dd66c46d
commit decd0771ee

View File

@@ -274,21 +274,22 @@ void astman_send_ack(struct mansession *s, struct message *m, char *msg)
ast_instring("this|that|more","this",',') == 1; ast_instring("this|that|more","this",',') == 1;
feel free to move this to app.c -anthm */ feel free to move this to app.c -anthm */
static int ast_instring(char *bigstr, char *smallstr, char delim) { static int ast_instring(char *bigstr, char *smallstr, char delim)
char *val = bigstr, *next; {
char *val = bigstr, *next;
do { do {
if ( ( next = strchr ( val, delim ) ) ) if ((next = strchr(val, delim))) {
if ( ! strncmp ( val , smallstr , ( next - val ) ) ) if (!strncmp(val, smallstr, (next - val)))
return 1; return 1;
else else
continue; continue;
else } else
return ! strcmp ( smallstr , val ); return !strcmp(smallstr, val);
} while ( * ( val = ( next + 1 ) ) ) ; } while (*(val = (next + 1)));
return 0; return 0;
} }
static int get_perm(char *instr) static int get_perm(char *instr)
@@ -305,14 +306,15 @@ static int get_perm(char *instr)
return ret; return ret;
} }
static int ast_is_number(char *string) { static int ast_is_number(char *string)
{
int ret = 1, x = 0; int ret = 1, x = 0;
if(!string) if (!string)
return 0; return 0;
for (x=0; x < strlen(string) ; x++ ) { for (x=0; x < strlen(string); x++) {
if (! (string[x] >= 48 && string[x] <= 57)) { if (!(string[x] >= 48 && string[x] <= 57)) {
ret = 0; ret = 0;
break; break;
} }
@@ -321,15 +323,15 @@ static int ast_is_number(char *string) {
return ret ? atoi(string) : 0; 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; int x = 0, ret = -1;
x = ast_is_number(string); x = ast_is_number(string);
if(x) if (x)
ret = x; ret = x;
else if (! string || ast_strlen_zero(string)) else if (!string || ast_strlen_zero(string))
ret = -1; ret = -1;
else if (!strcasecmp(string, "off") || ast_false(string)) else if (!strcasecmp(string, "off") || ast_false(string))
ret = 0; ret = 0;
@@ -337,13 +339,13 @@ static int ast_strings_to_mask(char *string) {
ret = -1; ret = -1;
else { else {
ret = 0; ret = 0;
for (x=0; x<sizeof(perms) / sizeof(perms[0]); x++) for (x=0; x<sizeof(perms) / sizeof(perms[0]); x++) {
if (ast_instring(string, perms[x].label, ',')) if (ast_instring(string, perms[x].label, ','))
ret |= perms[x].num; ret |= perms[x].num;
}
} }
return ret; return ret;
} }
/* /*
@@ -488,8 +490,8 @@ static char mandescr_events[] =
" client.\n" " client.\n"
"Variables:\n" "Variables:\n"
" EventMask: 'on' if all events should be sent,\n" " EventMask: 'on' if all events should be sent,\n"
" EventMask: 'system,call,log' if events should be sent matching these specific channels,\n" " 'off' if no events should be sent,\n"
" EventMask: 'off' if no events should be sent.\n"; " 'system,call,log' to select which flags events should have to be sent.\n";
static int action_events(struct mansession *s, struct message *m) static int action_events(struct mansession *s, struct message *m)
{ {