1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

use EXTSEP_S instead of "."

This commit is contained in:
Stefan Bellon 2002-05-07 14:43:00 +00:00
parent 0295445a4c
commit 7d217ecd7a
4 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2002-05-07 Stefan Bellon <sbellon@sbellon.de>
* md.c (md_start_debug): Use EXTSEP_S instead of ".".
2002-04-24 Werner Koch <wk@gnupg.org>
* tiger.c (tiger_final): Removed superfluous toke pasting operators.

View file

@ -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 );