mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
I should always compile before committing...
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@214069 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
12
main/say.c
12
main/say.c
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user