[Asterisk-cvs] asterisk channel.c, 1.150, 1.151 logger.c, 1.52, 1.53 pbx.c, 1.184, 1.185

markster at lists.digium.com markster at lists.digium.com
Sat Dec 18 17:07:57 CST 2004


Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv20470

Modified Files:
	channel.c logger.c pbx.c 
Log Message:
Fix comment issues (bug #3089)


Index: channel.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channel.c,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -d -r1.150 -r1.151
--- channel.c	9 Dec 2004 19:55:01 -0000	1.150
+++ channel.c	18 Dec 2004 22:04:06 -0000	1.151
@@ -643,7 +643,7 @@
 	while (!AST_LIST_EMPTY(headp)) {           /* List Deletion. */
 	            vardata = AST_LIST_FIRST(headp);
 	            AST_LIST_REMOVE_HEAD(headp, entries);
-//	            printf("deleting var %s=%s\n",ast_var_name(vardata),ast_var_value(vardata));
+/*	            printf("deleting var %s=%s\n",ast_var_name(vardata),ast_var_value(vardata)); */
 	            ast_var_delete(vardata);
 	}
 	                                                 

Index: logger.c
===================================================================
RCS file: /usr/cvsroot/asterisk/logger.c,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -d -r1.52 -r1.53
--- logger.c	14 Dec 2004 23:36:29 -0000	1.52
+++ logger.c	18 Dec 2004 22:04:06 -0000	1.53
@@ -424,7 +424,7 @@
 {
 	if(reload_logger(0))
 	{
-		ast_cli(fd, "Failed to reloadthe logger\n");
+		ast_cli(fd, "Failed to reload the logger\n");
 		return RESULT_FAILURE;
 	}
 	else
@@ -435,7 +435,7 @@
 {
 	if(reload_logger(1))
 	{
-		ast_cli(fd, "Failed to reloadthe logger\n");
+		ast_cli(fd, "Failed to reload the logger and rotate log files\n");
 		return RESULT_FAILURE;
 	}
 	else

Index: pbx.c
===================================================================
RCS file: /usr/cvsroot/asterisk/pbx.c,v
retrieving revision 1.184
retrieving revision 1.185
diff -u -d -r1.184 -r1.185
--- pbx.c	11 Dec 2004 03:50:19 -0000	1.184
+++ pbx.c	18 Dec 2004 22:04:06 -0000	1.185
@@ -64,18 +64,18 @@
 
 /* ast_exten: An extension */
 struct ast_exten {
-	char *exten;		/* Extension name */
-	int matchcid;				/* Match caller id ? */
-	char *cidmatch;	/* Caller id to match for this extension */
-	int priority;				/* Priority */
-	char *label;	/* Label */
-	struct ast_context *parent;		/* An extension */
-	char *app; 		/* Application to execute */
-	void *data;				/* Data to use */
-	void (*datad)(void *);			/* Data destructor */
-	struct ast_exten *peer;			/* Next higher priority with our extension */
-	const char *registrar;			/* Registrar */
-	struct ast_exten *next;			/* Extension with a greater ID */
+	char *exten;			/* Extension name */
+	int matchcid;			/* Match caller id ? */
+	char *cidmatch;			/* Caller id to match for this extension */
+	int priority;			/* Priority */
+	char *label;			/* Label */
+	struct ast_context *parent;	/* The context this extension belongs to  */
+	char *app; 			/* Application to execute */
+	void *data;			/* Data to use (arguments) */
+	void (*datad)(void *);		/* Data destructor */
+	struct ast_exten *peer;		/* Next higher priority with our extension */
+	const char *registrar;		/* Registrar */
+	struct ast_exten *next;		/* Extension with a greater ID */
 	char stuff[0];
 };
 




More information about the svn-commits mailing list