[asterisk-commits] russell: branch group/issue8824 r184045 - /team/group/issue8824/main/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Mar 24 17:07:53 CDT 2009
Author: russell
Date: Tue Mar 24 17:07:50 2009
New Revision: 184045
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=184045
Log:
Remove unnecessary whitespace
Modified:
team/group/issue8824/main/callerid.c
team/group/issue8824/main/channel.c
Modified: team/group/issue8824/main/callerid.c
URL: http://svn.digium.com/svn-view/asterisk/team/group/issue8824/main/callerid.c?view=diff&rev=184045&r1=184044&r2=184045
==============================================================================
--- team/group/issue8824/main/callerid.c (original)
+++ team/group/issue8824/main/callerid.c Tue Mar 24 17:07:50 2009
@@ -1170,14 +1170,6 @@
return "unknown";
}
-
-
-
-/* ******************************************************************* */
-
-
-
-
/*! \brief Translation table for redirecting reason settings */
static const struct ast_value_translation redirecting_reason_types[] = {
/* *INDENT-OFF* */
@@ -1196,10 +1188,6 @@
/* *INDENT-ON* */
};
-
-
-
-/* ******************************************************************* */
int ast_redirecting_reason_parse(const char *data)
{
int index;
@@ -1213,10 +1201,6 @@
return -1;
}
-
-
-
-/* ******************************************************************* */
const char *ast_redirecting_reason_describe(int data)
{
int index;
@@ -1230,10 +1214,6 @@
return "not-known";
}
-
-
-
-/* ******************************************************************* */
const char *ast_redirecting_reason_name(int data)
{
int index;
@@ -1246,14 +1226,6 @@
return "not-known";
}
-
-
-
-
-/* ******************************************************************* */
-
-
-
/*! \brief Translation table for connected line update source settings */
static const struct ast_value_translation connected_line_source_types[] = {
@@ -1267,10 +1239,6 @@
/* *INDENT-ON* */
};
-
-
-
-/* ******************************************************************* */
int ast_connected_line_source_parse(const char *data)
{
int index;
@@ -1284,10 +1252,6 @@
return -1;
}
-
-
-
-/* ******************************************************************* */
const char *ast_connected_line_source_describe(int data)
{
int index;
@@ -1301,10 +1265,6 @@
return "not-known";
}
-
-
-
-/* ******************************************************************* */
const char *ast_connected_line_source_name(int data)
{
int index;
Modified: team/group/issue8824/main/channel.c
URL: http://svn.digium.com/svn-view/asterisk/team/group/issue8824/main/channel.c?view=diff&rev=184045&r1=184044&r2=184045
==============================================================================
--- team/group/issue8824/main/channel.c (original)
+++ team/group/issue8824/main/channel.c Tue Mar 24 17:07:50 2009
@@ -1311,10 +1311,6 @@
cid->cid_dnid = cid->cid_num = cid->cid_name = cid->cid_ani = cid->cid_rdnis = NULL;
}
-
-
-
-/* ******************************************************************* */
/*!
* \internal
* \brief Initialize the given party id structure.
@@ -1331,10 +1327,6 @@
init->number_presentation = AST_PRES_ALLOWED_USER_NUMBER_NOT_SCREENED;
}
-
-
-
-/* ******************************************************************* */
/*!
* \internal
* \brief Copy the source party id information to the destination party id.
@@ -1365,10 +1357,6 @@
dest->number_presentation = src->number_presentation;
}
-
-
-
-/* ******************************************************************* */
/*!
* \internal
* \brief Initialize the given party id structure using the given guide
@@ -1394,10 +1382,6 @@
init->number_presentation = guide->number_presentation;
}
-
-
-
-/* ******************************************************************* */
/*!
* \internal
* \brief Set the source party id information into the destination party id.
@@ -1432,10 +1416,6 @@
dest->number_presentation = src->number_presentation;
}
-
-
-
-/* ******************************************************************* */
/*!
* \internal
* \brief Destroy the party id contents
@@ -1457,10 +1437,6 @@
}
}
-
-
-
-/* ******************************************************************* */
void ast_party_caller_copy(struct ast_callerid *dest, const struct ast_callerid *src)
{
if (dest == src) {
@@ -1510,10 +1486,6 @@
#endif
}
-
-
-
-/* ******************************************************************* */
void ast_party_connected_line_init(struct ast_party_connected_line *init)
{
ast_party_id_init(&init->id);
@@ -1522,10 +1494,6 @@
init->source = AST_CONNECTED_LINE_UPDATE_SOURCE_UNKNOWN;
}
-
-
-
-/* ******************************************************************* */
void ast_party_connected_line_copy(struct ast_party_connected_line *dest, const struct ast_party_connected_line *src)
{
if (dest == src) {
@@ -1544,10 +1512,6 @@
dest->source = src->source;
}
-
-
-
-/* ******************************************************************* */
void ast_party_connected_line_set_init(struct ast_party_connected_line *init, const struct ast_party_connected_line *guide)
{
ast_party_id_set_init(&init->id, &guide->id);
@@ -1556,7 +1520,6 @@
init->source = guide->source;
}
-
void ast_party_connected_line_set(struct ast_party_connected_line *dest, const struct ast_party_connected_line *src)
{
ast_party_id_set(&dest->id, &src->id);
@@ -1572,8 +1535,6 @@
dest->source = src->source;
}
-
-/* ******************************************************************* */
void ast_party_connected_line_collect_caller(struct ast_party_connected_line *connected, struct ast_callerid *cid)
{
connected->id.number = cid->cid_num;
@@ -1586,10 +1547,6 @@
connected->source = AST_CONNECTED_LINE_UPDATE_SOURCE_UNKNOWN;
}
-
-
-
-/* ******************************************************************* */
void ast_party_connected_line_free(struct ast_party_connected_line *doomed)
{
ast_party_id_free(&doomed->id);
@@ -1600,10 +1557,6 @@
}
}
-
-
-
-/* ******************************************************************* */
void ast_party_redirecting_copy(struct ast_party_redirecting *dest, const struct ast_party_redirecting *src)
{
if (dest == src) {
@@ -1617,10 +1570,6 @@
dest->reason = src->reason;
}
-
-
-
-/* ******************************************************************* */
void ast_party_redirecting_set_init(struct ast_party_redirecting *init, const struct ast_party_redirecting *guide)
{
ast_party_id_set_init(&init->from, &guide->from);
@@ -1629,19 +1578,11 @@
init->reason = guide->reason;
}
-
-
-
-
-/* ******************************************************************* */
void ast_party_redirecting_free(struct ast_party_redirecting *doomed)
{
ast_party_id_free(&doomed->from);
ast_party_id_free(&doomed->to);
}
-
-
-
/*! \brief Free a channel structure */
void ast_channel_free(struct ast_channel *chan)
More information about the asterisk-commits
mailing list