-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 308815 b: refs/heads/master c: 1080ef7 h: refs/heads/master i: 308813: a9bda52 308811: 35cef1c 308807: 949b3e3 308799: b260600 v: v3
- Loading branch information
Steve French
authored and
Pavel Shilovsky
committed
May 23, 2012
1 parent
a8f9cb1
commit 585f570
Showing
5 changed files
with
42 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 675f36fb1dfc14eb9f6136cbac505e819ae4be9d | ||
refs/heads/master: 1080ef758fb87f286b25277d8373e680a9e73363 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* SMB2 version specific operations | ||
* | ||
* Copyright (c) 2012, Jeff Layton <jlayton@redhat.com> | ||
* | ||
* This library is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License v2 as published | ||
* by the Free Software Foundation. | ||
* | ||
* This library 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 Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
*/ | ||
|
||
#include "cifsglob.h" | ||
|
||
struct smb_version_operations smb21_operations = { | ||
}; | ||
|
||
struct smb_version_values smb21_values = { | ||
.version_string = SMB21_VERSION_STRING, | ||
}; |