mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +00:00
2fc7b02015
cabinet (.cab) files.
12 lines
375 B
Plaintext
12 lines
375 B
Plaintext
--- bstring.cpp 2000/11/30 14:50:57 1.1
|
|
+++ bstring.cpp 2000/11/30 14:57:48
|
|
@@ -150,7 +150,7 @@
|
|
if(strlen(str) < strlen(s)) // If more memory is needed
|
|
*this = s; // Use assign function
|
|
else // If stpcpy can be used
|
|
- stpcpy(str, s); // Copy s into str
|
|
+ strcpy(str, s); // Copy s into str
|
|
}
|
|
|
|
return *this; // Return a refrence to this object
|