diff options
author | Volker Lendecke <vl@samba.org> | 2012-09-02 12:42:59 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2012-09-04 15:15:00 -0700 |
commit | d95d32606b5f90e865c3c8eef95f14be938b3bbe (patch) | |
tree | b718724a7b137ce23517070667b63696b0ee8bae | |
parent | d0df12f3ea6d3ad9bc83d9628ab68da9b4cc44d4 (diff) | |
download | samba-d95d32606b5f90e865c3c8eef95f14be938b3bbe.tar.gz samba-d95d32606b5f90e865c3c8eef95f14be938b3bbe.tar.bz2 samba-d95d32606b5f90e865c3c8eef95f14be938b3bbe.zip |
s3: Put a comment into the right place
Signed-off-by: Jeremy Allison <jra@samba.org>
-rw-r--r-- | source3/smbd/open.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 27e0128582..a4d4a3de31 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -3684,11 +3684,12 @@ static NTSTATUS create_file_unixpath(connection_struct *conn, goto fail; } - /* - * We're opening the stream element of a base_fsp - * we already opened. Set up the base_fsp pointer. - */ if (base_fsp) { + /* + * We're opening the stream element of a + * base_fsp we already opened. Set up the + * base_fsp pointer. + */ fsp->base_fsp = base_fsp; } |