]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 214702 via svnmerge from
authorTilghman Lesher <tilghman@meg.abyt.es>
Fri, 28 Aug 2009 20:15:51 +0000 (20:15 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Fri, 28 Aug 2009 20:15:51 +0000 (20:15 +0000)
https://origsvn.digium.com/svn/asterisk/trunk

................
  r214702 | tilghman | 2009-08-28 15:14:39 -0500 (Fri, 28 Aug 2009) | 15 lines

  Merged revisions 214701 via svnmerge from
  https://origsvn.digium.com/svn/asterisk/branches/1.4

  ........
    r214701 | tilghman | 2009-08-28 15:13:32 -0500 (Fri, 28 Aug 2009) | 8 lines

    Modify comment to be a bit more accurate.
    We have kept this comment around long enough, that it's pretty clear that we're
    keeping the code, because changing the code would require a pretty fundamental
    architectural shift.  We've also taken criticism in some quarters, because it
    was believed that it was referring to the code being nasty.  No, the code isn't
    nasty, just the operation itself is rather odd.  Fixed for eternity (probably
    not).
  ........
................

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@214703 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/channel.c

index a02b6c073ad378cda1ebfa49eaf5bdc29098f67e..39a47545b88a1398b3f2dd10d1776c8539d3bf91 100644 (file)
@@ -4320,10 +4320,10 @@ int ast_do_masquerade(struct ast_channel *original)
        manager_event(EVENT_FLAG_CALL, "Masquerade", "Clone: %s\r\nCloneState: %s\r\nOriginal: %s\r\nOriginalState: %s\r\n",
                      clone->name, ast_state2str(clone->_state), original->name, ast_state2str(original->_state));
 
-       /* XXX This is a seriously wacked out operation.  We're essentially putting the guts of
-          the clone channel into the original channel.  Start by killing off the original
-          channel's backend.   I'm not sure we're going to keep this function, because
-          while the features are nice, the cost is very high in terms of pure nastiness. XXX */
+       /* XXX This operation is a bit odd.  We're essentially putting the guts of
+        * the clone channel into the original channel.  Start by killing off the
+        * original channel's backend.  While the features are nice, which is the
+        * reason we're keeping it, it's still awesomely weird. XXX */
 
        /* We need the clone's lock, too */
        ast_channel_lock(clone);