Skip to content
Snippets Groups Projects
Commit 6615fcee authored by Mark Spencer's avatar Mark Spencer
Browse files

Portability fixes to sayunixtime

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1627 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent c8a93d08
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,10 @@ ...@@ -11,6 +11,10 @@
* *
*/ */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <asterisk/file.h> #include <asterisk/file.h>
#include <asterisk/logger.h> #include <asterisk/logger.h>
#include <asterisk/options.h> #include <asterisk/options.h>
...@@ -18,10 +22,6 @@ ...@@ -18,10 +22,6 @@
#include <asterisk/pbx.h> #include <asterisk/pbx.h>
#include <asterisk/module.h> #include <asterisk/module.h>
#include <asterisk/say.h> #include <asterisk/say.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
static char *tdesc = "Say time"; static char *tdesc = "Say time";
...@@ -60,7 +60,7 @@ static int sayunixtime_exec(struct ast_channel *chan, void *data) ...@@ -60,7 +60,7 @@ static int sayunixtime_exec(struct ast_channel *chan, void *data)
if (data) { if (data) {
s = data; s = data;
s = strdupa(s); s = ast_strdupa(s);
if (s) { if (s) {
timec = strsep(&s,"|"); timec = strsep(&s,"|");
if ((timec) && (*timec != '\0')) { if ((timec) && (*timec != '\0')) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment