]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Correct the spelling of 'conference.'
authorSean Bright <sean@malleable.com>
Thu, 28 Jul 2011 12:43:55 +0000 (12:43 +0000)
committerSean Bright <sean@malleable.com>
Thu, 28 Jul 2011 12:43:55 +0000 (12:43 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@329950 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_confbridge.c

index 4897d065ebd80d97f91cfb5a17202cc97f5760ca..76b4b266e07b3d47d4e06936ce51466e25e8a95d 100644 (file)
@@ -2623,13 +2623,13 @@ static int func_confbridge_info(struct ast_channel *chan, const char *cmd, char
                return -1;
        }
        if (!ao2_container_count(conference_bridges)) {
-               ast_log(LOG_ERROR, "No active conferneces.\n");
+               ast_log(LOG_ERROR, "No active conferences.\n");
                return -1;
        }
        ast_copy_string(tmp.name, args.confno, sizeof(tmp.name));
        bridge = ao2_find(conference_bridges, &tmp, OBJ_POINTER);
        if (!bridge) {
-               ast_log(LOG_ERROR, "Confernece '%s' not found.\n", args.confno);
+               ast_log(LOG_ERROR, "Conference '%s' not found.\n", args.confno);
                return -1;
        }