dect
/
asterisk
Archived
13
0
Fork 0

changing comment style to conform coding guidelines

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@156018 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
pari 2008-11-11 23:32:31 +00:00
parent bf38177783
commit d8c640af72
1 changed files with 6 additions and 6 deletions

View File

@ -1287,17 +1287,17 @@ static enum error_type handle_updates(struct mansession *s, const struct message
struct ast_str *str1 = ast_str_create(16), *str2 = ast_str_create(16);
enum error_type result = 0;
for (x = 0; x < 100000; x++) { //100000 = the max number of allowed updates + 1
for (x = 0; x < 100000; x++) { /* 100000 = the max number of allowed updates + 1 */
unsigned int object = 0;
snprintf(hdr, sizeof(hdr), "Action-%06d", x);
action = astman_get_header(m, hdr);
if (ast_strlen_zero(action)) // breaks the for loop if no action header
break; // this could cause problems if actions come in misnumbered
if (ast_strlen_zero(action)) /* breaks the for loop if no action header */
break; /* this could cause problems if actions come in misnumbered */
snprintf(hdr, sizeof(hdr), "Cat-%06d", x);
cat = astman_get_header(m, hdr);
if (ast_strlen_zero(cat)) { //every action needs a category
if (ast_strlen_zero(cat)) { /* every action needs a category */
result = UNSPECIFIED_CATEGORY;
break;
}
@ -1320,8 +1320,8 @@ static enum error_type handle_updates(struct mansession *s, const struct message
line = astman_get_header(m, hdr);
if (!strcasecmp(action, "newcat")) {
if (ast_category_get(cfg,cat)) { //check to make sure the cat doesn't
result = FAILURE_NEWCAT; //already exist
if (ast_category_get(cfg,cat)) { /* check to make sure the cat doesn't */
result = FAILURE_NEWCAT; /* already exist */
break;
}
if (!(category = ast_category_new(cat, dfn, -1))) {