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>
* gpgsplit.c (create_filename): Use EXTSEP_S instead of ".".
2002-04-23 David Shaw <dshaw@jabberwocky.com>
* Makefile.am: Do not list libraries in -lxxx format in a

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