]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Bug 6121 - typo in application description
authorTilghman Lesher <tilghman@meg.abyt.es>
Tue, 3 Jan 2006 18:15:12 +0000 (18:15 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Tue, 3 Jan 2006 18:15:12 +0000 (18:15 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@7743 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_stack.c

index d24f2267fa46ecd9b48d8ec409ecb59a36113b96..e3c33d2e5c038d05ee5ab1dd3b39e244907436cd 100644 (file)
@@ -52,22 +52,18 @@ static const char *pop_synopsis = "Remove one address from gosub stack";
 
 static const char *gosub_descrip =
 "Gosub([[context|]exten|]priority)\n"
-"  Jumps to the label specified, saving the return address.\n"
-"  Returns 0 if the label exists or -1 otherwise.\n";
+"  Jumps to the label specified, saving the return address.\n";
 static const char *gosubif_descrip =
-"Gosub(condition?labeliftrue[:labeliffalse])\n"
+"GosubIf(condition?labeliftrue[:labeliffalse])\n"
 "  If the condition is true, then jump to labeliftrue.  If false, jumps to\n"
 "labeliffalse, if specified.  In either case, a jump saves the return point\n"
-"in the dialplan, to be returned to with a Return.\n"
-"  Returns 0 if the label exists or -1 otherwise.\n";
+"in the dialplan, to be returned to with a Return.\n";
 static const char *return_descrip =
 "Return()\n"
-"  Jumps to the last label in the stack, removing it.\n"
-"  Returns 0 if there's a label in the stack or -1 otherwise.\n";
+"  Jumps to the last label on the stack, removing it.\n";
 static const char *pop_descrip =
 "StackPop()\n"
-"  Removes last label in the stack, discarding it.\n"
-"  Always returns 0, even if the stack is empty.\n";
+"  Removes last label on the stack, discarding it.\n";
 
 STANDARD_LOCAL_USER;