forked from Lainports/freebsd-ports
Quite a few users still depend on this and are getting it from untrusted sources. Its security track record is actually pretty good still. SuPHP is still the simplest solution for shared hosting. Other vendors still provide this as well. - Add a pkg-message explaining the situation and advising users to move away from this if possible. - Stage - Take maintainership
15 lines
417 B
C++
15 lines
417 B
C++
$NetBSD: patch-src_SmartPtr.hpp,v 1.1 2011/09/21 12:54:16 adam Exp $
|
|
|
|
Fix C++ syntax
|
|
|
|
--- src/SmartPtr.hpp.orig 2011-09-21 12:48:02.000000000 +0000
|
|
+++ src/SmartPtr.hpp
|
|
@@ -150,7 +150,7 @@ namespace suPHP {
|
|
template<class T>
|
|
const SmartPtr<T>& suPHP::SmartPtr<T>::operator=(
|
|
const SmartPtr<T>& ref) {
|
|
- this.reset(ref.ptr);
|
|
+ this->reset(ref.ptr);
|
|
return *this;
|
|
}
|
|
|