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

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