From 97d3149e92c3eb8c471092453c97a46ddc2c0bf2 Mon Sep 17 00:00:00 2001 From: David Shaw Date: Sat, 22 Dec 2001 15:54:12 +0000 Subject: Avoid const compiler warning --- g10/ChangeLog | 2 ++ g10/exec.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/g10/ChangeLog b/g10/ChangeLog index 2691716e3..636b20254 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,5 +1,7 @@ 2001-12-22 David Shaw + * exec.c (make_tempdir): avoid compiler warning with const + * mkdtemp.c (mkdtemp): catch the empty ("") string case in case someone repurposes mkdtemp at some point. diff --git a/g10/exec.c b/g10/exec.c index 652ed456e..09fe67ca4 100644 --- a/g10/exec.c +++ b/g10/exec.c @@ -43,7 +43,7 @@ char *mkdtemp(char *template); /* Makes a temp directory and filenames */ static int make_tempdir(struct exec_info *info) { - const char *tmp=opt.temp_dir; + char *tmp=opt.temp_dir; /* Make up the temp dir and files in case we need them */ if(tmp==NULL) -- cgit v1.2.3