aboutsummaryrefslogtreecommitdiffstats
path: root/utils/frame.c
diff options
context:
space:
mode:
authortwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-18 15:43:34 +0000
committertwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-18 15:43:34 +0000
commit9e8ebe6a94eb44796b296dfc214622ac583d4630 (patch)
treea07721daf3a91733bc3e073bab0697333d426e21 /utils/frame.c
parent421d5fe68591bbafcf04602c3bba927cac40a2a9 (diff)
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: http://svn.digium.com/svn/asterisk/trunk@109447 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'utils/frame.c')
-rw-r--r--utils/frame.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/utils/frame.c b/utils/frame.c
index 7fdb1637d..5aadb9687 100644
--- a/utils/frame.c
+++ b/utils/frame.c
@@ -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;