[Asterisk-cvs] asterisk/channels chan_zap.c,1.239,1.240

citats at lists.digium.com citats at lists.digium.com
Wed Jun 2 11:57:01 CDT 2004


Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/home/citats/cvs/asterisk/channels

Modified Files:
	chan_zap.c 
Log Message:
Code formatting fixes in chan_zap.c

Index: chan_zap.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_zap.c,v
retrieving revision 1.239
retrieving revision 1.240
diff -u -d -r1.239 -r1.240
--- chan_zap.c	31 May 2004 16:04:10 -0000	1.239
+++ chan_zap.c	2 Jun 2004 16:13:25 -0000	1.240
@@ -1459,10 +1459,10 @@
 			/* nick at dccinc.com 4/3/03 mods to allow for deferred dialing */
 			c = strchr(dest, '/');
 			if (c)
-			  c++;
+				c++;
 			if (c && (strlen(c) < p->stripmsd)) {
-			  ast_log(LOG_WARNING, "Number '%s' is shorter than stripmsd (%d)\n", c, p->stripmsd);
-			  c = NULL;
+				ast_log(LOG_WARNING, "Number '%s' is shorter than stripmsd (%d)\n", c, p->stripmsd);
+				c = NULL;
 			}
 			if (c) {
 				p->dop.op = ZT_DIAL_OP_REPLACE;
@@ -3076,19 +3076,19 @@
 						/* nick at dccinc.com 4/3/03 - fxo should be able to do deferred dialing */
 						res = ioctl(p->subs[SUB_REAL].zfd, ZT_DIAL, &p->dop);
 						if (res < 0) {
-						  ast_log(LOG_WARNING, "Unable to initiate dialing on trunk channel %d\n", p->channel);
-						  p->dop.dialstr[0] = '\0';
-						  return NULL;
+							ast_log(LOG_WARNING, "Unable to initiate dialing on trunk channel %d\n", p->channel);
+							p->dop.dialstr[0] = '\0';
+							return NULL;
 						} else {
-						  ast_log(LOG_DEBUG, "Sent FXO deferred digit string: %s\n", p->dop.dialstr);
-						  p->subs[index].f.frametype = AST_FRAME_NULL;
-						  p->subs[index].f.subclass = 0;
-						  p->dialing = 1;
+							ast_log(LOG_DEBUG, "Sent FXO deferred digit string: %s\n", p->dop.dialstr);
+							p->subs[index].f.frametype = AST_FRAME_NULL;
+							p->subs[index].f.subclass = 0;
+							p->dialing = 1;
 						}
 						p->dop.dialstr[0] = '\0';
-					   ast_setstate(ast, AST_STATE_DIALING);
+						ast_setstate(ast, AST_STATE_DIALING);
 					} else
-					   ast_setstate(ast, AST_STATE_UP);
+						ast_setstate(ast, AST_STATE_UP);
 					return &p->subs[index].f;
 				case AST_STATE_DOWN:
 					ast_setstate(ast, AST_STATE_RING);




More information about the svn-commits mailing list