aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authortzafrir <tzafrir@f38db490-d61c-443f-a65b-d21fe96a405b>2010-07-02 15:57:02 +0000
committertzafrir <tzafrir@f38db490-d61c-443f-a65b-d21fe96a405b>2010-07-02 15:57:02 +0000
commit4d43ba70d1537ee83f1910eeb11a8d246040bb57 (patch)
tree140374186507d1561a79c4dfb29494a10459c092 /main
parent75e7a3bc76a04710b9e236dcb28bce83040792cf (diff)
Fix various typos reported by Lintian
(Also fix the typos in the comments) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@273641 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/fixedjitterbuf.c2
-rw-r--r--main/say.c4
-rw-r--r--main/utils.c2
-rw-r--r--main/xmldoc.c2
4 files changed, 5 insertions, 5 deletions
diff --git a/main/fixedjitterbuf.c b/main/fixedjitterbuf.c
index 8a885b8e6..93c4cd205 100644
--- a/main/fixedjitterbuf.c
+++ b/main/fixedjitterbuf.c
@@ -105,7 +105,7 @@ struct fixed_jb *fixed_jb_new(struct fixed_jb_conf *conf)
/* First copy our config */
memcpy(&jb->conf, conf, sizeof(struct fixed_jb_conf));
- /* we dont need the passed config anymore - continue working with the saved one */
+ /* we don't need the passed config anymore - continue working with the saved one */
conf = &jb->conf;
/* validate the configuration */
diff --git a/main/say.c b/main/say.c
index 072d2aab2..ac2a8593d 100644
--- a/main/say.c
+++ b/main/say.c
@@ -668,7 +668,7 @@ static int ast_say_number_full_cs(struct ast_channel *chan, int num, const char
default : options = "m"; /* others are male */
}
}
- if ( left > 1 ) { /* we dont say "one thousand" but only thousand */
+ if ( left > 1 ) { /* we don't say "one thousand" but only thousand */
res = ast_say_number_full_cs(chan, left, ints, language, options, audiofd, ctrlfd);
if (res)
return res;
@@ -3997,7 +3997,7 @@ int ast_say_date_with_format_da(struct ast_channel *chan, time_t t, const char *
}
break;
case 'H':
- /* 24-Hour, single digit hours preceeded by "oh" (0) */
+ /* 24-Hour, single digit hours preceded by "oh" (0) */
if (tm.tm_hour < 10 && tm.tm_hour > 0) {
res = wait_file(chan, ints, "digits/0", lang);
}
diff --git a/main/utils.c b/main/utils.c
index bd14f99ad..5961a7339 100644
--- a/main/utils.c
+++ b/main/utils.c
@@ -283,7 +283,7 @@ int ast_base64decode(unsigned char *dst, const char *src, int max)
cnt++;
}
}
- /* Dont worry about left over bits, they're extra anyway */
+ /* Don't worry about left over bits, they're extra anyway */
return cnt;
}
diff --git a/main/xmldoc.c b/main/xmldoc.c
index 46be1f0e8..af320db88 100644
--- a/main/xmldoc.c
+++ b/main/xmldoc.c
@@ -449,7 +449,7 @@ static void xmldoc_string_cleanup(const char *text, struct ast_str **output, int
}
}
- /* remove last spaces (we dont want always to remove the trailing spaces). */
+ /* remove last spaces (we don't want always to remove the trailing spaces). */
if (lastspaces) {
ast_str_trim_blanks(*output);
}