From d987b536bdb09ba66af73a6aa927b9a5c9a4cfed Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Thu, 16 Apr 2009 21:06:18 +0000 Subject: [PATCH] Merged revisions 188774 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ................ r188774 | tilghman | 2009-04-16 16:03:31 -0500 (Thu, 16 Apr 2009) | 11 lines Merged revisions 188773 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r188773 | tilghman | 2009-04-16 16:02:29 -0500 (Thu, 16 Apr 2009) | 4 lines Umask should not be exported into global namespace. (closes issue #14912) Reported by: jcapp ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@188777 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 45de598360..bcfc0793b0 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -661,7 +661,7 @@ static char VM_SPOOL_DIR[PATH_MAX]; static char ext_pass_cmd[128]; static char ext_pass_check_cmd[128]; -int my_umask; +static int my_umask; #define PWDCHANGE_INTERNAL (1 << 1) #define PWDCHANGE_EXTERNAL (1 << 2)