summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoritz Schulte <mo@g10code.com>2004-09-11 15:34:41 +0200
committerMoritz Schulte <mo@g10code.com>2004-09-11 15:34:41 +0200
commit305f910ed2da1cba6785d8158bd771da72e317cf (patch)
tree9c77700f073c920d8dc342e2880a59730f3adb5e
parentdoc --max-cache-ttl (diff)
downloadgnupg2-305f910ed2da1cba6785d8158bd771da72e317cf.tar.xz
gnupg2-305f910ed2da1cba6785d8158bd771da72e317cf.zip
2004-09-11 Moritz Schulte <moritz@g10code.com>
* openfile.c (copy_options_file): Fixed last commit (added a `+').
-rw-r--r--g10/ChangeLog4
-rw-r--r--g10/openfile.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog
index 498d247b9..d33dcdc36 100644
--- a/g10/ChangeLog
+++ b/g10/ChangeLog
@@ -1,3 +1,7 @@
+2004-09-11 Moritz Schulte <moritz@g10code.com>
+
+ * openfile.c (copy_options_file): Fixed last commit (added a `+').
+
2004-08-31 Werner Koch <wk@g10code.de>
* openfile.c (copy_options_file): Use gpg-conf.skel. Better take
diff --git a/g10/openfile.c b/g10/openfile.c
index dbf42db78..faf9a2cd6 100644
--- a/g10/openfile.c
+++ b/g10/openfile.c
@@ -309,7 +309,7 @@ copy_options_file( const char *destdir )
return;
fname = xmalloc ( strlen(datadir) + strlen(destdir)
- strlen (SKELEXT) + 15 );
+ + strlen (SKELEXT) + 15 );
strcpy(stpcpy(fname, datadir), DIRSEP_S "gpg-conf" SKELEXT );
src = fopen( fname, "r" );
if( !src ) {