summaryrefslogtreecommitdiff
path: root/source3/libsmb/smberr.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-12-31 10:07:45 +0100
committerVolker Lendecke <vlendec@samba.org>2010-12-31 10:58:31 +0100
commit8e861852c0d30f74a56df3b33e356248c8fc964a (patch)
tree5509b78dab8462ec049a6619d62eb5a9aa795491 /source3/libsmb/smberr.c
parentade566d6b814784c0807351d0389ff98181b4205 (diff)
downloadsamba-8e861852c0d30f74a56df3b33e356248c8fc964a.tar.gz
samba-8e861852c0d30f74a56df3b33e356248c8fc964a.tar.bz2
samba-8e861852c0d30f74a56df3b33e356248c8fc964a.zip
s3: Fix some nonempty blank lines
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Fri Dec 31 10:58:31 CET 2010 on sn-devel-104
Diffstat (limited to 'source3/libsmb/smberr.c')
-rw-r--r--source3/libsmb/smberr.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/libsmb/smberr.c b/source3/libsmb/smberr.c
index f4a13983f0..8c4c5f36cb 100644
--- a/source3/libsmb/smberr.c
+++ b/source3/libsmb/smberr.c
@@ -1,17 +1,17 @@
/*
Unix SMB/CIFS implementation.
Copyright (C) Andrew Tridgell 1998
-
+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
-
+
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
-
+
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
@@ -162,7 +162,7 @@ const char *smb_dos_err_name(uint8 e_class, uint16 num)
{
char *result;
int i,j;
-
+
for (i=0;err_classes[i].e_class;i++)
if (err_classes[i].code == e_class) {
if (err_classes[i].err_msgs) {
@@ -176,7 +176,7 @@ const char *smb_dos_err_name(uint8 e_class, uint16 num)
SMB_ASSERT(result != NULL);
return result;
}
-
+
result = talloc_asprintf(talloc_tos(), "Error: Unknown error class "
"(%d,%d)", e_class,num);
SMB_ASSERT(result != NULL);