From: cantor Date: Mon, 22 Oct 2007 01:46:06 +0000 (+0000) Subject: Missing header. X-Git-Tag: 2.4~696 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=shibboleth%2Fsp.git;a=commitdiff_plain;h=1f842d13399b9eb47276a604a15eaed110077741 Missing header. git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/trunk@2561 cb58f699-b61c-0410-a6fe-9272a202ed29 --- diff --git a/fastcgi/shibauthorizer.cpp b/fastcgi/shibauthorizer.cpp index 14a232c..e626d3c 100644 --- a/fastcgi/shibauthorizer.cpp +++ b/fastcgi/shibauthorizer.cpp @@ -33,9 +33,9 @@ #include #include #include -#include #include +#include #include #ifdef HAVE_UNISTD_H # include @@ -78,7 +78,7 @@ public: m_port = strtol(server_port_str, &server_port_str, 10); if (*server_port_str) { cerr << "can't parse SERVER_PORT (" << FCGX_GetParam("SERVER_PORT", req->envp) << ")" << endl; - throw exception("Unable to determine server port."); + throw runtime_error("Unable to determine server port."); } } diff --git a/fastcgi/shibresponder.cpp b/fastcgi/shibresponder.cpp index be45e48..293a5b1 100644 --- a/fastcgi/shibresponder.cpp +++ b/fastcgi/shibresponder.cpp @@ -33,9 +33,9 @@ #include #include #include -#include #include +#include #include #ifdef HAVE_UNISTD_H # include @@ -80,7 +80,7 @@ public: m_port = strtol(server_port_str, &server_port_str, 10); if (*server_port_str) { cerr << "can't parse SERVER_PORT (" << FCGX_GetParam("SERVER_PORT", req->envp) << ")" << endl; - throw exception("Unable to determine server port."); + throw runtime_error("Unable to determine server port."); } }