From: Anthony Minessale Date: Wed, 14 Jun 2006 15:56:11 +0000 (+0000) Subject: wordbreaks X-Git-Tag: v1.0-beta1~2580 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6f1f9190bd050d8103df55ac9c89f0f2f53251fc;p=thirdparty%2Ffreeswitch.git wordbreaks git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1622 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/applications/mod_rss/mod_rss.c b/src/mod/applications/mod_rss/mod_rss.c index 61825323a3..7e45ea906c 100644 --- a/src/mod/applications/mod_rss/mod_rss.c +++ b/src/mod/applications/mod_rss/mod_rss.c @@ -295,12 +295,12 @@ static void rss_function(switch_core_session_t *session, char *data) switch_core_speech_flush_tts(&sh); snprintf(buf + len, sizeof(buf) - len, "Main Menu. " - "Choose one of the following Feeds followed by the pound key or press 0 to exit. " + "Choose one of the following Feeds, followed by the pound key or press 0 to exit. " ""); len = (int32_t)strlen(buf); for (idx = 0; idx < feed_index; idx++) { - snprintf(buf + len, sizeof(buf) - len, "Feed Number %d %s. ", idx + 1, feed_names[idx]); + snprintf(buf + len, sizeof(buf) - len, "Feed Number %d: %s. ", idx + 1, feed_names[idx]); len = (int32_t)strlen(buf); }