Blame SOURCES/0014-subman-Drop-LAST-from-status-enum.patch

6486b0
From a78b25b9507edb958a46779f2bb808bf678fa4a7 Mon Sep 17 00:00:00 2001
6486b0
From: Ray Strode <rstrode@redhat.com>
6486b0
Date: Sun, 24 Jan 2021 11:55:19 -0500
6486b0
Subject: [PATCH 14/15] subman: Drop "LAST" from status enum
6486b0
6486b0
It's unused, so get rid of it.
6486b0
---
6486b0
 plugins/subman/gsd-subman-common.h | 1 -
6486b0
 1 file changed, 1 deletion(-)
6486b0
6486b0
diff --git a/plugins/subman/gsd-subman-common.h b/plugins/subman/gsd-subman-common.h
6486b0
index f8a3d9f4..88226564 100644
6486b0
--- a/plugins/subman/gsd-subman-common.h
6486b0
+++ b/plugins/subman/gsd-subman-common.h
6486b0
@@ -4,38 +4,37 @@
6486b0
  *
6486b0
  * This program is free software; you can redistribute it and/or modify
6486b0
  * it under the terms of the GNU General Public License as published by
6486b0
  * the Free Software Foundation; either version 2 of the License, or
6486b0
  * (at your option) any later version.
6486b0
  *
6486b0
  * This program is distributed in the hope that it will be useful,
6486b0
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
6486b0
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
6486b0
  * GNU General Public License for more details.
6486b0
  *
6486b0
  * You should have received a copy of the GNU General Public License
6486b0
  * along with this program; if not, see <http://www.gnu.org/licenses/>.
6486b0
  *
6486b0
  */
6486b0
 
6486b0
 #ifndef __GSD_SUBMAN_COMMON_H
6486b0
 #define __GSD_SUBMAN_COMMON_H
6486b0
 
6486b0
 #include <glib-object.h>
6486b0
 
6486b0
 G_BEGIN_DECLS
6486b0
 
6486b0
 typedef enum {
6486b0
 	GSD_SUBMAN_SUBSCRIPTION_STATUS_UNKNOWN,
6486b0
 	GSD_SUBMAN_SUBSCRIPTION_STATUS_VALID,
6486b0
 	GSD_SUBMAN_SUBSCRIPTION_STATUS_INVALID,
6486b0
 	GSD_SUBMAN_SUBSCRIPTION_STATUS_DISABLED,
6486b0
 	GSD_SUBMAN_SUBSCRIPTION_STATUS_PARTIALLY_VALID,
6486b0
 	GSD_SUBMAN_SUBSCRIPTION_STATUS_NO_INSTALLED_PRODUCTS,
6486b0
-	GSD_SUBMAN_SUBSCRIPTION_STATUS_LAST
6486b0
 } GsdSubmanSubscriptionStatus;
6486b0
 
6486b0
 const gchar	*gsd_subman_subscription_status_to_string	(GsdSubmanSubscriptionStatus	 status);
6486b0
 
6486b0
 G_END_DECLS
6486b0
 
6486b0
 #endif /* __GSD_SUBMAN_COMMON_H */
6486b0
-- 
6486b0
2.30.0
6486b0