[Home]

Summary:ASTERISK-03686: [patch] add newline to NOTICE
Reporter:drmac (drmac)Labels:
Date Opened:2005-03-16 10:37:00.000-0600Date Closed:2008-01-15 15:27:33.000-0600
Priority:TrivialRegression?No
Status:Closed/CompleteComponents:Core/General
Versions:Frequency of
Occurrence
Related
Issues:
Environment:Attachments:( 0) newline_patch.txt
Description:..because my sister says I'm anal-retentive and nitpicky..

all this does is add a newline to the notice about IAX interface binding.

Changes this:

[chan_iax2.so] => (Inter Asterisk eXchange (Ver 2))
 == Registered application 'IAX2Provision'
 == Manager registered action IAXpeers
 == Registered channel type 'IAX2' (Inter Asterisk eXchange Driver (Ver 2))
 == Using TOS bits 16
 == Binding IAX2 to default address 0.0.0.0:4569  == IAX Ready and Listening on 0.0.0.0 port 4569

to this:

[chan_iax2.so] => (Inter Asterisk eXchange (Ver 2))
 == Registered application 'IAX2Provision'
 == Manager registered action IAXpeers
 == Registered channel type 'IAX2' (Inter Asterisk eXchange Driver (Ver 2))
 == Using TOS bits 16
 == Binding IAX2 to default address 0.0.0.0:4569
 == IAX Ready and Listening on 0.0.0.0 port 4569

disclaimer on file.

****** ADDITIONAL INFORMATION ******

Index: channels/chan_iax2.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_iax2.c,v
retrieving revision 1.254
diff -u -r1.254 chan_iax2.c
--- channels/chan_iax2.c        4 Mar 2005 06:47:24 -0000       1.254
+++ channels/chan_iax2.c        16 Mar 2005 15:35:32 -0000
@@ -8556,7 +8556,7 @@
                       return -1;
               } else {
                       if (option_verbose > 1)
-                               ast_verbose(VERBOSE_PREFIX_2 "Binding IAX2 to default address 0.0.0.0:%d", IAX_DEFAULT_PORTNO);
+                               ast_verbose(VERBOSE_PREFIX_2 "Binding IAX2 to default address 0.0.0.0:%d\n", IAX_DEFAULT_PORTNO);
                       defaultsockfd = ast_netsock_sockfd(ns);
               }
       }
Comments:By: Olle Johansson (oej) 2005-03-16 10:48:59.000-0600

Always attach diff files as .txt file attachments to the bug report - even if they are small and picky... :-)

/O

By: drmac (drmac) 2005-03-16 11:43:31.000-0600

no problemo

By: Mark Spencer (markster) 2005-03-16 12:37:29.000-0600

Fixed in CVS head.  Thanks.

By: Russell Bryant (russell) 2005-03-16 18:25:50.000-0600

This is not an issue in 1.0

By: Digium Subversion (svnbot) 2008-01-15 15:27:33.000-0600

Repository: asterisk
Revision: 5183

U   trunk/channels/chan_iax2.c

------------------------------------------------------------------------
r5183 | markster | 2008-01-15 15:27:32 -0600 (Tue, 15 Jan 2008) | 2 lines

Fix missing newline to notice (bug ASTERISK-3686)

------------------------------------------------------------------------

http://svn.digium.com/view/asterisk?view=rev&revision=5183