[Asterisk-cvs] asterisk manager.c, 1.74.2.2, 1.74.2.3 pbx.c, 1.154.2.7, 1.154.2.8 sched.c, 1.14, 1.14.2.1

russell at lists.digium.com russell at lists.digium.com
Fri Apr 15 02:24:08 CDT 2005


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

Modified Files:
      Tag: v1-0
	manager.c pbx.c sched.c 
Log Message:
add some newlines and fix some misspellings (bug #4027)


Index: manager.c
===================================================================
RCS file: /usr/cvsroot/asterisk/manager.c,v
retrieving revision 1.74.2.2
retrieving revision 1.74.2.3
diff -u -d -r1.74.2.2 -r1.74.2.3
--- manager.c	6 Apr 2005 16:45:41 -0000	1.74.2.2
+++ manager.c	15 Apr 2005 07:15:39 -0000	1.74.2.3
@@ -248,7 +248,7 @@
 		ast_mutex_destroy(&s->lock);
 		free(s);
 	} else
-		ast_log(LOG_WARNING, "Trying to delete non-existant session %p?\n", s);
+		ast_log(LOG_WARNING, "Trying to delete nonexistent session %p?\n", s);
 	ast_mutex_unlock(&sessionlock);
 	
 }
@@ -468,7 +468,7 @@
 			set_eventmask(s, events);
 		return 0;
 	}
-	ast_log(LOG_NOTICE, "%s tried to authenticate with non-existant user '%s'\n", ast_inet_ntoa(iabuf, sizeof(iabuf), s->sin.sin_addr), user);
+	ast_log(LOG_NOTICE, "%s tried to authenticate with nonexistent user '%s'\n", ast_inet_ntoa(iabuf, sizeof(iabuf), s->sin.sin_addr), user);
 	ast_destroy(cfg);
 	return -1;
 }
@@ -777,7 +777,7 @@
 	}
 	chan = ast_get_channel_by_name_locked(name);
 	if (!chan) {
-		astman_send_error(s, m, "Channel not existant");
+		astman_send_error(s, m, "Channel not existent");
 		return 0;
 	}
 	if (!ast_strlen_zero(name2))

Index: pbx.c
===================================================================
RCS file: /usr/cvsroot/asterisk/pbx.c,v
retrieving revision 1.154.2.7
retrieving revision 1.154.2.8
diff -u -d -r1.154.2.7 -r1.154.2.8
--- pbx.c	19 Feb 2005 00:27:52 -0000	1.154.2.7
+++ pbx.c	15 Apr 2005 07:15:39 -0000	1.154.2.8
@@ -5076,7 +5076,7 @@
 	for (inc = ast_walk_context_includes(con, NULL); inc; inc = ast_walk_context_includes(con, inc))
 		if (!ast_context_find(inc->rname)) {
 			res = -1;
-			ast_log(LOG_WARNING, "Context '%s' tries includes non-existant context '%s'\n",
+			ast_log(LOG_WARNING, "Context '%s' tries includes nonexistent context '%s'\n",
 					ast_get_context_name(con), inc->rname);
 		}
 	return res;

Index: sched.c
===================================================================
RCS file: /usr/cvsroot/asterisk/sched.c,v
retrieving revision 1.14
retrieving revision 1.14.2.1
diff -u -d -r1.14 -r1.14.2.1
--- sched.c	20 Jul 2004 13:43:33 -0000	1.14
+++ sched.c	15 Apr 2005 07:15:39 -0000	1.14.2.1
@@ -287,7 +287,7 @@
 	}
 	ast_mutex_unlock(&con->lock);
 	if (!s) {
-		ast_log(LOG_NOTICE, "Attempted to delete non-existant schedule entry %d!\n", id);
+		ast_log(LOG_NOTICE, "Attempted to delete nonexistent schedule entry %d!\n", id);
 #ifdef DO_CRASH
 		CRASH;
 #endif




More information about the svn-commits mailing list