[Asterisk-cvs] asterisk/apps app_sms.c, 1.17, 1.18 app_test.c, 1.6, 1.7

kpfleming at lists.digium.com kpfleming at lists.digium.com
Sun Apr 3 15:32:46 CDT 2005


Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv27491/apps

Modified Files:
	app_sms.c app_test.c 
Log Message:
ensure that needed headers are included for chmod() and mkdir() (bug #3937)


Index: app_sms.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_sms.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- app_sms.c	21 Jan 2005 07:06:24 -0000	1.17
+++ app_sms.c	3 Apr 2005 20:25:43 -0000	1.18
@@ -24,6 +24,7 @@
 #include <stdlib.h>
 #include <errno.h>
 #include <sys/types.h>
+#include <sys/stat.h>
 #include <dirent.h>
 #include <ctype.h>
 #include "../astconf.h"

Index: app_test.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_test.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- app_test.c	21 Jan 2005 07:06:24 -0000	1.6
+++ app_test.c	3 Apr 2005 20:25:43 -0000	1.7
@@ -13,6 +13,7 @@
  */
 
 #include <sys/types.h>
+#include <sys/stat.h>
 #include <asterisk/channel.h>
 #include <asterisk/options.h>
 #include <asterisk/module.h>




More information about the svn-commits mailing list