mirror of
https://git.openafs.org/openafs.git
synced 2025-01-20 07:51:00 +00:00
strl-20070102
str->strl
This commit is contained in:
parent
a132e7f545
commit
11999d395c
@ -145,10 +145,10 @@ error_message(afs_int32 code)
|
||||
}
|
||||
oops:
|
||||
UNLOCK_ET_LIST;
|
||||
strcpy(buffer, "Unknown code ");
|
||||
strlcpy(buffer, "Unknown code ", sizeof buffer);
|
||||
if (table_num) {
|
||||
strcat(buffer, error_table_name(table_num));
|
||||
strcat(buffer, " ");
|
||||
strlcat(buffer, error_table_name(table_num), sizeof buffer);
|
||||
strlcat(buffer, " ", sizeof buffer);
|
||||
}
|
||||
for (cp = buffer; *cp; cp++);
|
||||
if (offset >= 100) {
|
||||
|
Loading…
Reference in New Issue
Block a user