aboutsummaryrefslogtreecommitdiffstats
path: root/cipher
diff options
context:
space:
mode:
Diffstat (limited to 'cipher')
-rw-r--r--cipher/ChangeLog4
-rw-r--r--cipher/md.c2
2 files changed, 5 insertions, 1 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 );