summaryrefslogtreecommitdiff
path: root/zen/http.cpp
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-02-21 12:13:36 -0500
committerB. Stack <bgstack15@gmail.com>2023-02-21 12:13:36 -0500
commit5a6ed4e8eadf3af3d141b246f124d67b62a1357c (patch)
tree4e49ae80efbe181c46110867fe7cf703efd3fcf5 /zen/http.cpp
parentargon2 copyright notice updated (diff)
downloadFreeFileSync-12.1.tar.gz
FreeFileSync-12.1.tar.bz2
FreeFileSync-12.1.zip
add upstream 12.112.1
Diffstat (limited to 'zen/http.cpp')
-rw-r--r--zen/http.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/http.cpp b/zen/http.cpp
index 7eb3fb76..e1a828c1 100644
--- a/zen/http.cpp
+++ b/zen/http.cpp
@@ -499,7 +499,7 @@ bool zen::isValidEmail(const std::string_view& email)
return false;
//---------------------------------------------------------------------
- //not going to parse and validate this!
+ //we're not going to parse and validate this!
const bool quoted = (startsWith(local, '"') && endsWith(local, '"')) ||
contains(local, '\\'); //e.g. "t\@st@email.com"
if (!quoted)
bgstack15