| 421 |
recent_long_name = 0; |
recent_long_name = 0; |
| 422 |
recent_long_name_blocks = 0; |
recent_long_name_blocks = 0; |
| 423 |
} |
} |
| 424 |
|
assign_string (&orig_file_name, name); |
| 425 |
assign_string (¤t_file_name, name); |
assign_string (¤t_file_name, name); |
| 426 |
current_trailing_slash = strip_trailing_slashes (current_file_name); |
current_trailing_slash = strip_trailing_slashes (current_file_name); |
| 427 |
|
|
| 904 |
{ |
{ |
| 905 |
char modes[11]; |
char modes[11]; |
| 906 |
char const *time_stamp; |
char const *time_stamp; |
| 907 |
char *temp_name; |
char *temp_name = orig_file_name ? orig_file_name : current_file_name; |
| 908 |
|
|
| 909 |
/* These hold formatted ints. */ |
/* These hold formatted ints. */ |
| 910 |
char uform[UINTMAX_STRSIZE_BOUND], gform[UINTMAX_STRSIZE_BOUND]; |
char uform[UINTMAX_STRSIZE_BOUND], gform[UINTMAX_STRSIZE_BOUND]; |
| 925 |
STRINGIFY_BIGINT (block_ordinal, buf)); |
STRINGIFY_BIGINT (block_ordinal, buf)); |
| 926 |
} |
} |
| 927 |
|
|
|
if (current_trailing_slash) |
|
|
{ |
|
|
temp_name = xmalloc (strlen (current_file_name) + 2); |
|
|
strcpy (temp_name, current_file_name); |
|
|
strcat (temp_name, "/"); |
|
|
} |
|
|
else |
|
|
{ |
|
|
temp_name = xmalloc (strlen (current_file_name) + 1); |
|
|
strcpy (temp_name, current_file_name); |
|
|
} |
|
|
|
|
| 928 |
if (verbose_option <= 1) |
if (verbose_option <= 1) |
| 929 |
{ |
{ |
| 930 |
/* Just the fax, mam. */ |
/* Just the fax, mam. */ |
| 1132 |
break; |
break; |
| 1133 |
} |
} |
| 1134 |
} |
} |
|
free (temp_name); |
|
| 1135 |
fflush (stdlis); |
fflush (stdlis); |
| 1136 |
} |
} |
| 1137 |
|
|