fix spelling of 'unchangeable'
authorEdward Betts <edward@4angle.com>
Thu, 26 Jan 2017 21:41:12 +0000 (21:41 +0000)
committerGarming Sam <garming@samba.org>
Wed, 22 Feb 2017 11:21:51 +0000 (12:21 +0100)
Signed-off-by: Edward Betts <edward@4angle.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
Autobuild-User(master): Garming Sam <garming@samba.org>
Autobuild-Date(master): Wed Feb 22 12:21:51 CET 2017 on sn-devel-144

docs-xml/Samba3-HOWTO/TOSHARG-ProfileMgmt.xml
examples/libsmbclient/testutime.c

index ff762ad34d7ac631b4daed7d94271d4782e15ba5..405188b5423f88698e6b6265f83362e340114c4c 100644 (file)
@@ -1182,7 +1182,7 @@ per-user settings using the Domain User Manager (as with MS Windows NT4/200x). <
 <itemizedlist>
        <listitem><para>A profile unique to that user.</para></listitem>
        <listitem><para>A mandatory profile (one the user cannot change).</para></listitem>
-       <listitem><para>A group profile (really should be mandatory &smbmdash; that is, unchangable).</para></listitem>
+       <listitem><para>A group profile (really should be mandatory &smbmdash; that is, unchangeable).</para></listitem>
 </itemizedlist>
 
 </sect2>
index cdbcfec316471230a23c125ea394475da663e34d..8cc78fd62849820dc73f522b7794421d1739c9ea 100644 (file)
@@ -52,7 +52,7 @@ int main(int argc, char * argv[])
            (long long)st.st_ctime, ctime_r(&st.st_ctime, c_time),
            (long long)st.st_atime, ctime_r(&st.st_atime, a_time));
     
-    utimbuf.actime = t;         /* unchangable (wont change) */
+    utimbuf.actime = t;         /* unchangeable (wont change) */
     utimbuf.modtime = t;        /* this one should succeed */
     if (smbc_utime(pSmbPath, &utimbuf) < 0)
     {