Skip to content
Snippets Groups Projects
Commit 90617166 authored by Kevin P. Fleming's avatar Kevin P. Fleming
Browse files

issue #5581

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7014 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent e463c42b
No related branches found
No related tags found
No related merge requests found
2005-11-07 Kevin P. Fleming <kpfleming@digium.com>
* asterisk.c (main): setpriority() failure is not a reason to stop the process (issue #5581)
* say.c (ast_say_date_with_format_da): say hours properly (issue #5576)
* manager.c (astman_get_variables): restore old multiple-variable behavior for "Variable" header (issue #5585)
......
......@@ -2061,9 +2061,8 @@ int main(int argc, char *argv[])
runuser = ast_config_AST_RUN_USER;
#ifndef __CYGWIN__
if (!is_child_of_nonroot && ast_set_priority(option_highpriority)) {
exit(1);
}
if (!is_child_of_nonroot)
ast_set_priority(option_highpriority);
if (!is_child_of_nonroot && rungroup) {
struct group *gr;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment