1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-14 21:47:19 +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

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