X-Git-Url: https://the.earth.li/gitweb/?p=onak.git;a=blobdiff_plain;f=keydb_hkp.c;h=b4540e15ab915d5cf01542a72cb87964106c4040;hp=65b6bdcf4e22e1609f620aaa8356b16a0f0e3777;hb=adc800dbc424a1e246dd4a82a0c2e88eeda25531;hpb=cc7c85b31ad99e8ec2b545c333cbcc890a97e9e7 diff --git a/keydb_hkp.c b/keydb_hkp.c index 65b6bdc..b4540e1 100644 --- a/keydb_hkp.c +++ b/keydb_hkp.c @@ -13,14 +13,14 @@ * more details. * * You should have received a copy of the GNU General Public License along with - * this program; if not, write to the Free Software Foundation, Inc., 51 - * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * this program. If not, see . */ +#include +#include #include #include #include -#include #include #include "armor.h" @@ -36,7 +36,7 @@ struct onak_hkp_dbctx { struct onak_db_config *config; /* Our DB config info */ CURL *curl; - char hkpbase[1024]; + char hkpbase[512]; }; static int hkp_parse_url(struct onak_hkp_dbctx *privctx, const char *url) @@ -49,11 +49,11 @@ static int hkp_parse_url(struct onak_hkp_dbctx *privctx, const char *url) proto[0] = host[0] = 0; port = 0; - matched = sscanf(url, "%5[a-z]://%256[a-zA-Z0-9.]:%u", proto, host, + matched = sscanf(url, "%5[a-z]://%256[a-zA-Z0-9.-]:%u", proto, host, &port); if (matched < 2) { proto[0] = 0; - sscanf(url, "%256[a-zA-Z0-9.]:%u", host, &port); + sscanf(url, "%256[a-zA-Z0-9.-]:%u", host, &port); } if (host[0] == 0) {