Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / security / botan / patches / patch-src_cert_cvc_cvc__req.cpp
blob07f73b8a97df8bfe33c3105747ecb47cfb9a09c4
1 $NetBSD$
3 --- src/cert/cvc/cvc_req.cpp.orig 2013-04-30 23:48:36.000000000 +0000
4 +++ src/cert/cvc/cvc_req.cpp
5 @@ -50,7 +50,7 @@ void EAC1_1_Req::force_decode()
6 #endif
9 -EAC1_1_Req::EAC1_1_Req(std::tr1::shared_ptr<DataSource> in)
10 +EAC1_1_Req::EAC1_1_Req(shared_ptr<DataSource> in)
12 init(in);
13 self_signed = true;
14 @@ -59,7 +59,7 @@ EAC1_1_Req::EAC1_1_Req(std::tr1::shared_
16 EAC1_1_Req::EAC1_1_Req(const std::string& in)
18 - std::tr1::shared_ptr<DataSource> stream(new DataSource_Stream(in, true));
19 + shared_ptr<DataSource> stream(new DataSource_Stream(in, true));
20 init(stream);
21 self_signed = true;
22 do_decode();