Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/ntfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Finck <colin@reactos.org>2021-12-15 22:46:25 +0300
committerColin Finck <colin@reactos.org>2021-12-15 22:46:25 +0300
commit84e90a5a05740393a324838037539e560cd14b72 (patch)
tree02350099525ba322d5788a410dd6eb562f395163 /examples
parent3235d18acd772e4fb639dca2d76edc39c47a983c (diff)
Relicense everything as MIT OR Apache-2.0 to enable a broader usage.
Diffstat (limited to 'examples')
-rw-r--r--examples/ntfs-shell/main.rs2
-rw-r--r--examples/ntfs-shell/sector_reader.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/ntfs-shell/main.rs b/examples/ntfs-shell/main.rs
index 32f9a71..e362250 100644
--- a/examples/ntfs-shell/main.rs
+++ b/examples/ntfs-shell/main.rs
@@ -1,5 +1,5 @@
// Copyright 2021 Colin Finck <colin@reactos.org>
-// SPDX-License-Identifier: GPL-2.0-or-later
+// SPDX-License-Identifier: MIT OR Apache-2.0
mod sector_reader;
diff --git a/examples/ntfs-shell/sector_reader.rs b/examples/ntfs-shell/sector_reader.rs
index 690d3ed..cdfb458 100644
--- a/examples/ntfs-shell/sector_reader.rs
+++ b/examples/ntfs-shell/sector_reader.rs
@@ -1,5 +1,5 @@
// Copyright 2021 Colin Finck <colin@reactos.org>
-// SPDX-License-Identifier: GPL-2.0-or-later
+// SPDX-License-Identifier: MIT OR Apache-2.0
use std::io;
use std::io::{Read, Seek, SeekFrom};