summaryrefslogtreecommitdiff
path: root/channels/chan_unistim.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2008-04-10 13:45:45 +0000
committerJoshua Colp <jcolp@digium.com>2008-04-10 13:45:45 +0000
commit4a21c5dd2209c83e6a1e7d5b9e26b530de436fca (patch)
treeac73f44c0a11be36da70dccad447b0b92917b0a5 /channels/chan_unistim.c
parenta4e73acaf838cf958b33e2e5bb7ddb5c581d1b76 (diff)
Fix spelling of existent in a few places.
(closes issue #12409) Reported by: candlerb git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@114024 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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;
}