]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
Spelling fixes s/convertion/conversion/
authorMathieu Parent <math.parent@gmail.com>
Thu, 29 Aug 2019 19:31:07 +0000 (21:31 +0200)
committerAndrew Bartlett <abartlet@samba.org>
Sun, 1 Sep 2019 22:21:26 +0000 (22:21 +0000)
Signed-off-by: Mathieu Parent <math.parent@gmail.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
lib/replace/replace.c
lib/replace/wscript
source3/libads/util.c

index a14322b8e578a94f693b53478829a1d55cd5d043..99b18e8259053e0ffad186780a74a13f7050f69a 100644 (file)
@@ -547,7 +547,7 @@ long long int rep_strtoll(const char *str, char **endptr, int base)
        if (errno == EINVAL) {
                if (base == 0 || (base >1 && base <37)) {
                        /* Base was ok so it's because we were not
-                        * able to make the convertion.
+                        * able to make the conversion.
                         * Let's reset errno.
                         */
                        errno = saved_errno;
@@ -583,7 +583,7 @@ unsigned long long int rep_strtoull(const char *str, char **endptr, int base)
        if (errno == EINVAL) {
                if (base == 0 || (base >1 && base <37)) {
                        /* Base was ok so it's because we were not
-                        * able to make the convertion.
+                        * able to make the conversion.
                         * Let's reset errno.
                         */
                        errno = saved_errno;
index 4df1b4d77c405baacb74f4a5560ca9278f3efea2..9af8ac49b2c7795c22e68e4274ac4e5fc5a4fa0b 100644 (file)
@@ -404,7 +404,7 @@ def configure(conf):
                 msg="Checking whether we can use SO_PEERCRED to get socket credentials",
                 headers='sys/types.h sys/socket.h')
 
-    #Some OS (ie. freebsd) return EINVAL if the convertion could not be done, it's not what we expect
+    #Some OS (ie. freebsd) return EINVAL if the conversion could not be done, it's not what we expect
     #Let's detect those cases
     if conf.CONFIG_SET('HAVE_STRTOLL'):
         conf.CHECK_CODE('''
index 354125b74fe846cd9c871c00bdffa798200567f6..edbb368a2de474c62a000df12f3fcbb9daff510d 100644 (file)
@@ -223,7 +223,7 @@ struct spn_struct *parse_spn(TALLOC_CTX *ctx, const char *srvprinc)
                    || result->port > 65535
                    || errno == ERANGE) {
                        DBG_ERR("Failed to parse spn %s, port number "
-                               "convertion failed\n", srvprinc);
+                               "conversion failed\n", srvprinc);
                        errno = 0;
                        goto fail;
                }