Displaying 4 results from an estimated 4 matches for "no_reply".
Did you mean:
do_reply
2006 May 11
2
Problem setting locale for voicemail
I've set voicemail almost successfully, only a minor detail remains :-)
I can't get the dates in my local language (spanish). In sip.conf,
zapata.conf and voicemail.conf, I've set:
language=es
and my locale is "es" also. However, the days and months names still
appear in english in the emails!!!
Thursday 11 de May de 2006, 18:49:34.
instead of
Martes 11 de mayo de
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...| _ -> true) args in
let style = ret, args' @ args_of_optargs optargs, [] in
pr " r = do_%s " name;
generate_c_call_args ~in_daemon:true style;
@@ -359,7 +367,7 @@ let generate_daemon_stubs actions () =
* send its own reply.
*)
let no_reply =
- List.exists (function FileOut _ -> true | _ -> false) args in
+ List.exists (function String (FileOut, _) -> true | _ -> false) args in
if no_reply then
pr " /* do_%s has already sent a reply */\n" name
else (
diff --git a/generator/er...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator.
Rich.
2009 Aug 03
1
[PATCH 1/2] Convert all TABs-as-indentation to spaces.
...In _ | FileOut _ -> false | _ -> true)
+ (snd style) in
pr " r = do_%s " name;
generate_c_call_args (fst style, args');
pr ";\n";
@@ -4732,63 +4732,63 @@ and generate_daemon_actions () =
* send its own reply.
*)
let no_reply =
- List.exists (function FileOut _ -> true | _ -> false) (snd style) in
+ List.exists (function FileOut _ -> true | _ -> false) (snd style) in
if no_reply then
- pr " /* do_%s has already sent a reply */\n" name
+ pr " /* do_%s has already sent a r...