forked from Lainports/freebsd-ports
11 lines
375 B
Text
11 lines
375 B
Text
--- 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
|