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

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