summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMathieu Parent <math.parent@gmail.com>2019-08-29 21:58:50 +0200
committerAndrew Bartlett <abartlet@samba.org>2019-09-01 22:21:27 +0000
commitc5e97f1aa15b11aa6becf168e3750b547e6eccfc (patch)
treeb5363c4b0fe3a12ac96e9807a8f83ea7fc69af65 /examples
parent0459a6db3319948a59c52669193b618f812d8bf0 (diff)
downloadsamba-c5e97f1aa15b11aa6becf168e3750b547e6eccfc.tar.gz
Spelling fixes s/wont /won't /
Signed-off-by: Mathieu Parent <math.parent@gmail.com> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
Diffstat (limited to 'examples')
-rw-r--r--examples/libsmbclient/testutime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/libsmbclient/testutime.c b/examples/libsmbclient/testutime.c
index 8cc78fd6284..662bd866a59 100644
--- a/examples/libsmbclient/testutime.c
+++ b/examples/libsmbclient/testutime.c
@@ -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; /* unchangeable (wont change) */
+ utimbuf.actime = t; /* unchangeable (won't change) */
utimbuf.modtime = t; /* this one should succeed */
if (smbc_utime(pSmbPath, &utimbuf) < 0)
{