diff options
author | Michael Adam <obnox@samba.org> | 2011-02-10 16:09:34 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-02-10 17:46:12 +0100 |
commit | 82bcada6f6c95f0b9c77c099566678c0f651d846 (patch) | |
tree | cc2338e3543e7f5687b71dd4117530519422dbe6 | |
parent | d62aa577c315ec7a2049d465ad3e35a6089191f3 (diff) | |
download | samba-82bcada6f6c95f0b9c77c099566678c0f651d846.tar.gz samba-82bcada6f6c95f0b9c77c099566678c0f651d846.tar.bz2 samba-82bcada6f6c95f0b9c77c099566678c0f651d846.zip |
s3:smbd: fix switch indentation level in get_ea_dos_attribute()
Autobuild-User: Michael Adam <obnox@samba.org>
Autobuild-Date: Thu Feb 10 17:46:12 CET 2011 on sn-devel-104
-rw-r--r-- | source3/smbd/dosmode.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/smbd/dosmode.c b/source3/smbd/dosmode.c index 838dec035e..c0bf168e53 100644 --- a/source3/smbd/dosmode.c +++ b/source3/smbd/dosmode.c @@ -308,10 +308,10 @@ static bool get_ea_dos_attribute(connection_struct *conn, create_time)) )); } break; - default: - DEBUG(1,("get_ea_dos_attribute: Badly formed DOSATTRIB on " - "file %s - %s\n", smb_fname_str_dbg(smb_fname), - attrstr)); + default: + DEBUG(1,("get_ea_dos_attribute: Badly formed DOSATTRIB on " + "file %s - %s\n", smb_fname_str_dbg(smb_fname), + attrstr)); return false; } |