aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cipher/ChangeLog4
-rw-r--r--cipher/md.c2
-rw-r--r--tools/ChangeLog4
-rw-r--r--tools/gpgsplit.c2
4 files changed, 10 insertions, 2 deletions
diff --git a/cipher/ChangeLog b/cipher/ChangeLog
index 8e28db04c..6aaaf7c34 100644
--- a/cipher/ChangeLog
+++ b/cipher/ChangeLog
@@ -1,3 +1,7 @@
+2002-05-07 Stefan Bellon <[email protected]>
+
+ * md.c (md_start_debug): Use EXTSEP_S instead of ".".
+
2002-04-24 Werner Koch <[email protected]>
* tiger.c (tiger_final): Removed superfluous toke pasting operators.
diff --git a/cipher/md.c b/cipher/md.c
index 8d20a9804..49728638b 100644
--- a/cipher/md.c
+++ b/cipher/md.c
@@ -497,7 +497,7 @@ md_start_debug( MD_HANDLE md, const char *suffix )
return;
}
idx++;
- sprintf(buf, "dbgmd-%05d.%.10s", idx, suffix );
+ sprintf(buf, "dbgmd-%05d" EXTSEP_S "%.10s", idx, suffix );
md->debug = fopen(buf, "w");
if( !md->debug )
log_debug("md debug: can't open %s\n", buf );
diff --git a/tools/ChangeLog b/tools/ChangeLog
index c62d7efe9..0cb89ae11 100644
--- a/tools/ChangeLog
+++ b/tools/ChangeLog
@@ -1,3 +1,7 @@
+2002-05-07 Stefan Bellon <[email protected]>
+
+ * gpgsplit.c (create_filename): Use EXTSEP_S instead of ".".
+
2002-04-23 David Shaw <[email protected]>
* Makefile.am: Do not list libraries in -lxxx format in a
diff --git a/tools/gpgsplit.c b/tools/gpgsplit.c
index 17c4a0aa1..8d89b1b9d 100644
--- a/tools/gpgsplit.c
+++ b/tools/gpgsplit.c
@@ -192,7 +192,7 @@ create_filename (int pkttype)
assert (pkttype < 1000 && pkttype >= 0 );
partno++;
- sprintf (name, "%s%06u-%03d.%.40s",
+ sprintf (name, "%s%06u-%03d" EXTSEP_S "%.40s",
opt_prefix, partno, pkttype, pkttype_to_string (pkttype));
return name;
}