diff options
Diffstat (limited to 'src/openpgp.cpp')
-rw-r--r-- | src/openpgp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openpgp.cpp b/src/openpgp.cpp index fec292d1e..abb10a5cb 100644 --- a/src/openpgp.cpp +++ b/src/openpgp.cpp @@ -116,7 +116,7 @@ SecureVector<byte> decode(DataSource& source, std::string& label, end_of_headers = true; for(u32bit j = 0; j != this_header.length(); ++j) - if(!is_space(this_header[j])) + if(!Charset::is_space(this_header[j])) end_of_headers = false; if(!end_of_headers) |