1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
Description: fix the license issue of two files
Licenses of two files don't match with their SPDX-License-Identifier
It's an upstream's mistake and upstream fixed this:
https://github.com/kolunmi/bazaar/issues/1103
the issue will be fixed in the next release.
this patch is cherry-picked from the upstream patch.
Author: Seyed Mohamad Amin Modaresi <modaresisofthard@proton.me>
Forwarded: yes
diff --git a/src/bz-carousel-indicator-dots.c b/src/bz-carousel-indicator-dots.c
index a3c137e..0e5cace 100644
--- a/src/bz-carousel-indicator-dots.c
+++ b/src/bz-carousel-indicator-dots.c
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
- * SPDX-License-Identifier: LGPL-2.1-or-later
+ * SPDX-License-Identifier: GPL-3.0-or-later
*/
#include "bz-carousel-indicator-dots.h"
diff --git a/src/bz-carousel-indicator-dots.h b/src/bz-carousel-indicator-dots.h
index 5afeca0..68efa19 100644
--- a/src/bz-carousel-indicator-dots.h
+++ b/src/bz-carousel-indicator-dots.h
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
- * SPDX-License-Identifier: LGPL-2.1-or-later
+ * SPDX-License-Identifier: GPL-3.0-or-later
*/
#pragma once
|