Skip to content

Commit

Permalink
Make Init() pure virtual
Browse files Browse the repository at this point in the history
  • Loading branch information
ffurano committed Mar 1, 2017
1 parent 04cf0a4 commit d65e8c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrdHttp/XrdHttpSecXtractor.hh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public:


// Initializes an ssl ctx
virtual int Init(SSL_CTX *, int) { return -1; };
virtual int Init(SSL_CTX *, int) = 0;
virtual int InitSSL(SSL *, char *) { return -1; };
virtual int FreeSSL(SSL *) { return -1; };

Expand Down

0 comments on commit d65e8c0

Please sign in to comment.