mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 11:58:40 +00:00
issue #5581
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7014 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user