[asterisk-commits] branch oej/test-this-branch r18904 -
/team/oej/test-this-branch/acl.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Mon Apr 10 11:34:09 MST 2006
Author: oej
Date: Mon Apr 10 13:34:06 2006
New Revision: 18904
URL: http://svn.digium.com/view/asterisk?rev=18904&view=rev
Log:
Clean up logging
Modified:
team/oej/test-this-branch/acl.c
Modified: team/oej/test-this-branch/acl.c
URL: http://svn.digium.com/view/asterisk/team/oej/test-this-branch/acl.c?rev=18904&r1=18903&r2=18904&view=diff
==============================================================================
--- team/oej/test-this-branch/acl.c (original)
+++ team/oej/test-this-branch/acl.c Mon Apr 10 13:34:06 2006
@@ -300,22 +300,17 @@
}
}
- if (!strcasecmp(value, "lowdelay")) {
+ if (!strcasecmp(value, "lowdelay"))
*tos = IPTOS_LOWDELAY;
- ast_log(LOG_WARNING, "tos value %s is deprecated. See doc/iptos.txt for more information.", value);
- } else if (!strcasecmp(value, "throughput")) {
+ else if (!strcasecmp(value, "throughput"))
*tos = IPTOS_THROUGHPUT;
- ast_log(LOG_WARNING, "tos value %s is deprecated. See doc/iptos.txt for more information.", value);
- } else if (!strcasecmp(value, "reliability")) {
+ else if (!strcasecmp(value, "reliability"))
*tos = IPTOS_RELIABILITY;
- ast_log(LOG_WARNING, "tos value %s is deprecated. See doc/iptos.txt for more information.", value);
- } else if (!strcasecmp(value, "mincost")) {
+ else if (!strcasecmp(value, "mincost"))
*tos = IPTOS_MINCOST;
- ast_log(LOG_WARNING, "tos value %s is deprecated. See doc/iptos.txt for more information.", value);
- } else if (!strcasecmp(value, "none")) {
+ else if (!strcasecmp(value, "none"))
*tos = 0;
- ast_log(LOG_WARNING, "tos value %s is deprecated. See doc/iptos.txt for more information.", value);
- } else if (!strcasecmp(value, "ef"))
+ else if (!strcasecmp(value, "ef"))
*tos = 46 << 2;
else if (!strcasecmp(value, "af43"))
*tos = 38 << 2;
More information about the asterisk-commits
mailing list