[Asterisk-cvs] asterisk asterisk.c,1.51.2.4,1.51.2.5
citats at lists.digium.com
citats at lists.digium.com
Tue Mar 2 19:14:33 CST 2004
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/home/citats/cvs/asterisk-stable
Modified Files:
Tag: v1-0_stable
asterisk.c
Log Message:
Fix typo
Index: asterisk.c
===================================================================
RCS file: /usr/cvsroot/asterisk/asterisk.c,v
retrieving revision 1.51.2.4
retrieving revision 1.51.2.5
diff -u -d -r1.51.2.4 -r1.51.2.5
--- asterisk.c 2 Mar 2004 23:50:14 -0000 1.51.2.4
+++ asterisk.c 3 Mar 2004 00:05:10 -0000 1.51.2.5
@@ -257,14 +257,14 @@
FD_SET(ast_socket, &fds);
s = ast_select(ast_socket + 1, &fds, NULL, NULL, NULL);
if (s < 0) {
- ast_log(LOG_WARNING, "Select retured error: %s\n", strerror(errno));
+ ast_log(LOG_WARNING, "Select returned error: %s\n", strerror(errno));
continue;
}
len = sizeof(sun);
s = accept(ast_socket, (struct sockaddr *)&sun, &len);
if (s < 0) {
if (errno != EINTR)
- ast_log(LOG_WARNING, "Accept retured %d: %s\n", s, strerror(errno));
+ ast_log(LOG_WARNING, "Accept returned %d: %s\n", s, strerror(errno));
} else {
for (x=0;x<AST_MAX_CONNECTS;x++) {
if (consoles[x].fd < 0) {
More information about the svn-commits
mailing list