]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
fix misspelling of separate (bug #3607)
authorRussell Bryant <russell@russellbryant.com>
Sat, 19 Feb 2005 00:41:21 +0000 (00:41 +0000)
committerRussell Bryant <russell@russellbryant.com>
Sat, 19 Feb 2005 00:41:21 +0000 (00:41 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@5052 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_forkcdr.c
apps/app_parkandannounce.c
configs/indications.conf.sample
configs/modem.conf.sample
dlfcn.c
include/asterisk/vmodem.h
indications.c

index bf493d523129751c18e8d536de0b9bb984a99786..460aba0b72aa5fa78819495b8bd936479d2fc36a 100755 (executable)
@@ -20,7 +20,7 @@
 #include <string.h>
 #include <pthread.h>
 
-static char *tdesc = "Fork The CDR into 2 seperate entities.";
+static char *tdesc = "Fork The CDR into 2 separate entities.";
 static char *app = "ForkCDR";
 static char *synopsis = 
 "Forks the Call Data Record";
index bb8a7fb899209bf3c6c50af5ba9899d37432005d..7492dd4b2782bd2fd6a7f3539070151b97aae596 100755 (executable)
@@ -41,7 +41,7 @@ static char *synopsis = "Park and Announce";
 static char *descrip =
 "  ParkAndAnnounce(announce:template|timeout|dial|[return_context]):\n"
 "Park a call into the parkinglot and announce the call over the console.\n"
-"announce template: colon seperated list of files to announce, the word PARKED\n"
+"announce template: colon separated list of files to announce, the word PARKED\n"
 "                   will be replaced by a say_digits of the ext the call is parked in\n"
 "timeout: time in seconds before the call returns into the return context.\n"
 "dial: The app_dial style resource to call to make the announcement. Console/dsp calls the console.\n"
index df05da4ce6fbee7124505e2851e099aa5d66daf1..7875e325749802ad8be4caaf275fa9734662cfd1 100755 (executable)
@@ -35,7 +35,7 @@ country=us
 ; every other variable will be available as a shortcut for the "PlayList" command
 ; but will not automaticly be used by Asterisk.
 ;
-; The tonelist itself is defined by a sequence of elements, seperated by ,'s.
+; The tonelist itself is defined by a sequence of elements, separated by ,'s.
 ; Each element consist of a frequency (f) with a possible frequency attached
 ; (f1+f2) to it. Behind the frequency there is an optional duration, in
 ; milliseconds. If the element starts with a !, that element is NOT repeat,
index 3af4530b0b1cae7aa08d887c6bf1b7aa79e1bc0a..bca405d9633c5d0f2f5c3b7f13de1bb4ead11f29 100755 (executable)
@@ -84,7 +84,7 @@ mode=immediate
 ; two other devices, which are in group '1' and are used when an
 ; outgoing dial used: exten => s,1,Dial,Modem/g1:1234|60|r
 ; (we do not need more outgoing devices, since ISDN2 has only 2 channels.)
-; Lines can be in more than one group (1-31); comma seperated list.
+; Lines can be in more than one group (1-31); comma separated list.
 ;
 group=1                ; group=1,2,3,9-12
 ;msn=50780023
diff --git a/dlfcn.c b/dlfcn.c
index 60244968e46787f427a498ef3f97af615ad75c8c..6ef390c4a0681282e0e097abe84d8253758dd0a9 100755 (executable)
--- a/dlfcn.c
+++ b/dlfcn.c
@@ -270,7 +270,7 @@ static const struct mach_header *get_mach_header_from_NSModule(NSModule * mod)
  * trying to locate a module. We first look at the values of LD_LIBRARY_PATH
  * and DYLD_LIBRARY_PATH, and then finally fall back to looking into
  * /usr/lib and /lib. Since both of the environments variables can contain a
- * list of colon seperated paths, we simply concat them and the two other paths
+ * list of colon separated paths, we simply concat them and the two other paths
  * into one big string, which we then can easily parse.
  * Splitting this string into the actual path list is done by getSearchPath()
  */
index 69886154b0b5bbbb16998ab7af0308b8680bb57d..cf809870cc4221f97aae073b5c0ed9d59a570acf 100755 (executable)
@@ -111,9 +111,9 @@ struct ast_modem_pvt {
        char context[AST_MAX_EXTENSION];
        /*! Multiple Subscriber Number */
        char msn[AST_MAX_EXTENSION];    
-       /*! Multiple Subscriber Number we listen to (; seperated list) */
+       /*! Multiple Subscriber Number we listen to (; separated list) */
        char incomingmsn[AST_MAX_EXTENSION];    
-       /*! Multiple Subscriber Number we accept for outgoing calls (; seperated list) */
+       /*! Multiple Subscriber Number we accept for outgoing calls (; separated list) */
        char outgoingmsn[AST_MAX_EXTENSION];    
        /*! Group(s) we belong to if available */
        unsigned int group;
index 9598c5438a86fb8d61fef2a1cff2231c2c806998..985c601c143c3f997d6f69d60e5e5c6e7e2dc246 100755 (executable)
@@ -13,7 +13,7 @@
  * This set of function allow us to play a list of tones on a channel.
  * Each element has two frequencies, which are mixed together and a
  * duration. For silence both frequencies can be set to 0.
- * The playtones can be given as a comma seperated string.
+ * The playtones can be given as a comma separated string.
  */
 
 #include <stdio.h>