[Asterisk-cvs] asterisk asterisk.c,1.55,1.56
citats at lists.digium.com
citats at lists.digium.com
Tue Mar 2 19:14:23 CST 2004
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/home/citats/cvs/asterisk
Modified Files:
asterisk.c
Log Message:
Fix typo
Index: asterisk.c
===================================================================
RCS file: /usr/cvsroot/asterisk/asterisk.c,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -d -r1.55 -r1.56
--- asterisk.c 2 Mar 2004 23:50:03 -0000 1.55
+++ asterisk.c 3 Mar 2004 00:05:00 -0000 1.56
@@ -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