diff options
author | Ian Gilfillan <github@greenman.co.za> | 2020-07-14 00:42:47 +0200 |
---|---|---|
committer | Anel <an3l@users.noreply.github.com> | 2020-07-22 23:18:12 +0200 |
commit | d2982331a62e22ff10fd7768f450303bc90d1caf (patch) | |
tree | e1f6f08983de4626d66e5b93e5c1f5399c3bff9c /sql/item_inetfunc.cc | |
parent | 62d73df6b270cc94ba577e96d3bf325170f306fe (diff) | |
download | mariadb-git-d2982331a62e22ff10fd7768f450303bc90d1caf.tar.gz |
Code comment spellfixes
Diffstat (limited to 'sql/item_inetfunc.cc')
-rw-r--r-- | sql/item_inetfunc.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/item_inetfunc.cc b/sql/item_inetfunc.cc index 4cf43e075a5..061811b0799 100644 --- a/sql/item_inetfunc.cc +++ b/sql/item_inetfunc.cc @@ -206,7 +206,7 @@ String *Item_func_inet_str_base::val_str_ascii(String *buffer) @return Completion status. @retval false Given string does not represent an IPv4-address. - @retval true The string has been converted sucessfully. + @retval true The string has been converted successfully. @note The problem with inet_pton() is that it treats leading zeros in IPv4-part differently on different platforms. @@ -331,7 +331,7 @@ static bool str_to_ipv4(const char *str, int str_length, in_addr *ipv4_address) @return Completion status. @retval false Given string does not represent an IPv6-address. - @retval true The string has been converted sucessfully. + @retval true The string has been converted successfully. @note The problem with inet_pton() is that it treats leading zeros in IPv4-part differently on different platforms. @@ -677,7 +677,7 @@ static void ipv6_to_str(const in6_addr *ipv6, char *str) @return Completion status. @retval false Given string does not represent an IP-address. - @retval true The string has been converted sucessfully. + @retval true The string has been converted successfully. */ bool Item_func_inet6_aton::calc_value(const String *arg, String *buffer) @@ -717,7 +717,7 @@ bool Item_func_inet6_aton::calc_value(const String *arg, String *buffer) @return Completion status. @retval false The argument does not correspond to IP-address. - @retval true The string has been converted sucessfully. + @retval true The string has been converted successfully. */ bool Item_func_inet6_ntoa::calc_value(const String *arg, String *buffer) |