diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/ChangeLog | 4 | ||||
-rw-r--r-- | tools/gpgsplit.c | 2 |
2 files changed, 5 insertions, 1 deletions
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; } |