Mon Dec 15 10:57:06 CST 2008 Pekka Pessi <first.last@nokia.com>

* sresolv: made sres_record_class static
  
  Should never been global.



git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11764 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2009-02-11 15:58:09 +00:00
parent 73e167fb85
commit c536aac576
1 changed files with 2 additions and 1 deletions

View File

@ -1536,7 +1536,8 @@ char const *sres_record_type(int type, char buffer[8])
}
/** Convert class to its name. */
char const *sres_record_class(int rclass, char buffer[8])
static char const *
sres_record_class(int rclass, char buffer[8])
{
switch (rclass) {
case 1: return "IN";