mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
b8a55a6b2b
suffix" convention. sc will also prepend a hash character which will make the backup files go out of common directory sort order. - A value such as 40 will be displayed wrongly if displayed with a "0.00 EUR" format (i.e. more than one or two characters alpha text after the number format). - 8-bit characters (according to usual locale conventions) should be allowed. PR: 32017 Submitted by: Helge Oldach <send-pr@oldach.net>
20 lines
483 B
Plaintext
20 lines
483 B
Plaintext
--- cmds.c.orig Mon May 11 20:43:34 1992
|
|
+++ cmds.c Wed Feb 16 21:55:06 2000
|
|
@@ -1800,14 +1800,14 @@
|
|
int infd, outfd;
|
|
int count;
|
|
|
|
- /* tpath will be the [path/]file ---> [path/]#file~ */
|
|
+ /* tpath will be the [path/]file ---> [path/]file~ */
|
|
strcpy(tpath, path);
|
|
if ((tpp = strrchr(tpath, '/')) == NULL)
|
|
tpp = tpath;
|
|
else
|
|
tpp++;
|
|
strcpy(fname, tpp);
|
|
- (void) sprintf(tpp, "#%s~", fname);
|
|
+ (void) sprintf(tpp, "%s~", fname);
|
|
|
|
if (stat(path, &statbuf) == 0)
|
|
{
|