Merged revisions 109447 via svnmerge from

https://origsvn.digium.com/svn/asterisk/trunk

........
r109447 | twilson | 2008-03-18 10:43:34 -0500 (Tue, 18 Mar 2008) | 3 lines

Go through and fix a bunch of places where character strings were being interpreted as format strings. Most of these changes are solely to make compiling with -Wsecurity and -Wformat=2 happy, and were not
actual problems, per se.  I also added format attributes to any printf wrapper functions I found that didn't have them.  -Wsecurity and -Wmissing-format-attribute added to --enable-dev-mode.

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@109459 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2008-03-18 15:58:50 +00:00
parent 1df02c7c33
commit 4af367c3a9
31 changed files with 137 additions and 127 deletions

View File

@@ -910,7 +910,7 @@ int workloop( FILE *theinfile, FILE *theoutfile,
return TRUE; /* Input file done with, no errors. */
}
int chat( const char *format, ...)
int __attribute__((format (printf,1,2))) chat( const char *format, ...)
{
va_list ap;
int result = 0;
@@ -924,8 +924,7 @@ int chat( const char *format, ...)
return result;
}
int inform( const char *format, ...)
int __attribute__((format (printf,1,2))) inform( const char *format, ...)
{
va_list ap;
int result = 0;
@@ -939,7 +938,7 @@ int inform( const char *format, ...)
return result;
}
int error( const char *format, ...)
int __attribute__((format (printf,1,2))) error( const char *format, ...)
{
va_list ap;
int result;
@@ -950,7 +949,7 @@ int error( const char *format, ...)
return result;
}
void fatalerror( const char *format, ...)
void __attribute__((format (printf,1,2))) fatalerror( const char *format, ...)
{
va_list ap;
@@ -966,7 +965,7 @@ void fatalperror( const char *string)
myexit( 1);
}
int say( const char *format, ...)
int __attribute__((format (printf,1,2))) say( const char *format, ...)
{
va_list ap;
int result;