소스 검색

src,examples: fix copyright owner

Looks like I put my own name by mistake instead of my employer's, and it
probably spread by copy-pasting the boilerplate. Not good :-/.
Quentin Monnet 8 년 전
부모
커밋
26138c2dcc
6개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 1
      examples/disassemble.rs
  2. 1 1
      examples/to_json.rs
  3. 1 1
      src/disassembler.rs
  4. 1 1
      src/jit.rs
  5. 1 1
      src/lib.rs
  6. 1 1
      src/verifier.rs

+ 1 - 1
examples/disassemble.rs

@@ -1,4 +1,4 @@
-// Copyright 2017 Quentin Monnet <quentin.monnet@6wind.com>
+// Copyright 2017 6WIND S.A. <quentin.monnet@6wind.com>
 //
 // Licensed under the Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0> or
 // the MIT license <http://opensource.org/licenses/MIT>, at your option. This file may not be

+ 1 - 1
examples/to_json.rs

@@ -1,4 +1,4 @@
-// Copyright 2017 Quentin Monnet <quentin.monnet@6wind.com>
+// Copyright 2017 6WIND S.A. <quentin.monnet@6wind.com>
 //
 // Licensed under the Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0> or
 // the MIT license <http://opensource.org/licenses/MIT>, at your option. This file may not be

+ 1 - 1
src/disassembler.rs

@@ -1,4 +1,4 @@
-// Copyright 2017 Quentin Monnet <quentin.monnet@6wind.com>
+// Copyright 2017 6WIND S.A. <quentin.monnet@6wind.com>
 //
 // Licensed under the Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0> or
 // the MIT license <http://opensource.org/licenses/MIT>, at your option. This file may not be

+ 1 - 1
src/jit.rs

@@ -1,7 +1,7 @@
 // Derived from uBPF <https://github.com/iovisor/ubpf>
 // Copyright 2015 Big Switch Networks, Inc
 //      (uBPF: JIT algorithm, originally in C)
-// Copyright 2016 Quentin Monnet <quentin.monnet@6wind.com>
+// Copyright 2016 6WIND S.A. <quentin.monnet@6wind.com>
 //      (Translation to Rust, MetaBuff addition)
 //
 // Licensed under the Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0> or

+ 1 - 1
src/lib.rs

@@ -1,7 +1,7 @@
 // Derived from uBPF <https://github.com/iovisor/ubpf>
 // Copyright 2015 Big Switch Networks, Inc
 //      (uBPF: VM architecture, parts of the interpreter, originally in C)
-// Copyright 2016 Quentin Monnet <quentin.monnet@6wind.com>
+// Copyright 2016 6WIND S.A. <quentin.monnet@6wind.com>
 //      (Translation to Rust, MetaBuff/multiple classes addition, hashmaps for helpers)
 //
 // Licensed under the Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0> or

+ 1 - 1
src/verifier.rs

@@ -1,7 +1,7 @@
 // Derived from uBPF <https://github.com/iovisor/ubpf>
 // Copyright 2015 Big Switch Networks, Inc
 //      (uBPF: safety checks, originally in C)
-// Copyright 2016 Quentin Monnet <quentin.monnet@6wind.com>
+// Copyright 2016 6WIND S.A. <quentin.monnet@6wind.com>
 //      (Translation to Rust)
 //
 // Licensed under the Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0> or