diff options
author | Volker Lendecke <vl@samba.org> | 2012-06-25 11:07:22 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-06-25 17:13:59 +0200 |
commit | 754b925ccde2a46c5fdcb00141374d5c55fc5ff9 (patch) | |
tree | 6f4122179cbed64a6a4b616748eaa31ec629d546 /source3/smbd | |
parent | c0936663a86ca8515b8a38bdd4feee5250171032 (diff) | |
download | samba-754b925ccde2a46c5fdcb00141374d5c55fc5ff9.tar.gz samba-754b925ccde2a46c5fdcb00141374d5c55fc5ff9.tar.bz2 samba-754b925ccde2a46c5fdcb00141374d5c55fc5ff9.zip |
s3: Fix a typo
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Autobuild-User(master): Stefan Metzmacher <metze@samba.org>
Autobuild-Date(master): Mon Jun 25 17:13:59 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/open.c | 2 | ||||
-rw-r--r-- | source3/smbd/smb2_create.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 273f3b2c1e..f259cc99ec 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -2376,7 +2376,7 @@ static NTSTATUS open_file_ntcreate(connection_struct *conn, if (file_existed && (flags2&O_TRUNC)) { /* - * We are modifing the file after open - update the stat + * We are modifying the file after open - update the stat * struct.. */ if ((SMB_VFS_FTRUNCATE(fsp, 0) == -1) || diff --git a/source3/smbd/smb2_create.c b/source3/smbd/smb2_create.c index 9881ed2d51..7dd7c5ca60 100644 --- a/source3/smbd/smb2_create.c +++ b/source3/smbd/smb2_create.c @@ -1066,7 +1066,7 @@ void schedule_deferred_open_message_smb2( /* * This is subtle. We must null out the callback - * before resheduling, else the first call to + * before rescheduling, else the first call to * tevent_req_nterror() causes the _receive() * function to be called, this causing tevent_req_post() * to crash. @@ -1124,7 +1124,7 @@ static void smb2_deferred_open_timer(struct event_context *ev, /* * This is subtle. We must null out the callback - * before resheduling, else the first call to + * before rescheduling, else the first call to * tevent_req_nterror() causes the _receive() * function to be called, this causing tevent_req_post() * to crash. |