]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - lib/smblib/smb-errors.c
SourceFormat Enforcement
[thirdparty/squid.git] / lib / smblib / smb-errors.c
index 80f355f7d8d9b3a723fd5b1bafdbc9fd396d2124..2409fb4d2b0a81e97614660a00a3d76d977d5824 100644 (file)
@@ -1,4 +1,10 @@
-#include "squid.h"
+/*
+ * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
+ *
+ * Squid software is distributed under GPLv2+ license and includes
+ * contributions from numerous individuals and organizations.
+ * Please see the COPYING and CONTRIBUTORS files for details.
+ */
 
 /* UNIX SMBlib NetBIOS implementation
 
@@ -6,7 +12,6 @@
    SMBlib Error values etc ...
 
    Copyright (C) Richard Sharpe, Andrew Tridgell, and Merik Karman, 1996
-
 */
 
 /*
@@ -31,6 +36,8 @@
 /* ensure we don't overwrite strings when not passed enough space. Also */
 /* added code to say unknown error codes if we see any                  */
 
+#include "squid.h"
+
 typedef struct {
     char *name;
     int code;
@@ -219,3 +226,4 @@ int SMB_Get_SMB_Error_Msg(int err_class, int err_code, char *msg_buf, int len)
     return(strlen(msg_buf));
 
 }
+