mbox series

[V2,0/2] Fix copyright and license for strlcpy

Message ID 20201231102935.85706-1-sbabic@denx.de
Headers show
Series Fix copyright and license for strlcpy | expand

Message

Stefano Babic Dec. 31, 2020, 10:29 a.m. UTC
strlcpy() is taken from freeBSD code because it is not present in Linux. 
Code was copied but without copyright and ISC license.

Changes since V1:
	- Add text for ISC license
	- Move strlcpy() in separate file and add SPDX header

Stefano Babic (2):
  Add isc license text to Licenses
  Added missing copyright for strlcpy function

 Licenses/isc.txt | 17 +++++++++++++++++
 core/Makefile    |  3 ++-
 core/strlcpy.c   | 45 +++++++++++++++++++++++++++++++++++++++++++++
 core/util.c      | 33 ---------------------------------
 4 files changed, 64 insertions(+), 34 deletions(-)
 create mode 100644 Licenses/isc.txt
 create mode 100644 core/strlcpy.c