aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-16 21:06:18 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-16 21:06:18 +0000
commit0dcf742d65a91fdb5f7b53c328a8794994c0ace6 (patch)
treefa2b231f40978e2fe00e6f141c625d0112ec23e0 /apps
parent2de4c61c53fa63a6eda99850031b9e231052a671 (diff)
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: http://svn.digium.com/svn/asterisk/branches/1.6.2@188777 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_voicemail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 45de59836..bcfc0793b 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)