aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_unistim.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-04-10 13:46:33 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-04-10 13:46:33 +0000
commitd64073e9e93533daed023666948d03b42042fa46 (patch)
treec68619ebe04a810d612457aa867a10264a1d9b6e /channels/chan_unistim.c
parentde847473fd745601d89d989e81349274a9c8568b (diff)
Merged revisions 114024 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r114024 | file | 2008-04-10 10:45:45 -0300 (Thu, 10 Apr 2008) | 4 lines Fix spelling of existent in a few places. (closes issue #12409) Reported by: candlerb ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@114025 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_unistim.c')
-rw-r--r--channels/chan_unistim.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/channels/chan_unistim.c b/channels/chan_unistim.c
index 8adb3497b..808cbe2fe 100644
--- a/channels/chan_unistim.c
+++ b/channels/chan_unistim.c
@@ -1141,7 +1141,7 @@ static void close_client(struct unistimsession *s)
ast_mutex_destroy(&s->lock);
ast_free(s);
} else
- ast_log(LOG_WARNING, "Trying to delete non-existant session %p?\n", s);
+ ast_log(LOG_WARNING, "Trying to delete non-existent session %p?\n", s);
ast_mutex_unlock(&sessionlock);
return;
}
@@ -3546,7 +3546,7 @@ static void parsing(int size, unsigned char *buf, struct unistimsession *pte,
}
if (pte->seq_server < seq) {
ast_log(LOG_NOTICE,
- "%s Error : ACK received for a non-existant packet : #0x%.4x\n",
+ "%s Error : ACK received for a non-existent packet : #0x%.4x\n",
tmpbuf, pte->seq_server);
ast_mutex_unlock(&pte->lock);
return;
@@ -3598,7 +3598,7 @@ static void parsing(int size, unsigned char *buf, struct unistimsession *pte,
}
if (pte->seq_server < seq) {
ast_log(LOG_NOTICE,
- "%s Error : received a request for a non-existant packet : #0x%.4x\n",
+ "%s Error : received a request for a non-existent packet : #0x%.4x\n",
tmpbuf, pte->seq_server);
return;
}