I should always compile before committing...

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@214069 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.4
Tilghman Lesher 17 years ago
parent 10a972f98e
commit a45f5e5be0

@ -3477,6 +3477,12 @@ int ast_say_date_with_format_en(struct ast_channel *chan, time_t time, const cha
return res;
}
static char next_item(const char *format)
{
const char *next = ast_skip_blanks(format);
return *next;
}
/* Danish syntax */
int ast_say_date_with_format_da(struct ast_channel *chan, time_t time, const char *ints, const char *lang, const char *format, const char *timezone)
{
@ -3682,12 +3688,6 @@ int ast_say_date_with_format_da(struct ast_channel *chan, time_t time, const cha
return res;
}
char next_item(const char *format)
{
const char *next = ast_skip_blanks(format);
return *next;
}
/* German syntax */
int ast_say_date_with_format_de(struct ast_channel *chan, time_t time, const char *ints, const char *lang, const char *format, const char *timezone)
{

Loading…
Cancel
Save