[PATCH 09/10] parse-date: remove unused ordinal_day_seen

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Signed-off-by: J William Piggott <elseifthen@xxxxxxx>
---
 lib/parse-date.y | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/lib/parse-date.y b/lib/parse-date.y
index 6ab7ef2..c06616a 100644
--- a/lib/parse-date.y
+++ b/lib/parse-date.y
@@ -207,9 +207,6 @@ typedef struct {
 	size_t times_seen;
 	size_t zones_seen;
 
-	/* 1 if the user specified explicit ordinal day value, */
-	int ordinal_day_seen;
-
 	/* Table of local time zone abbreviations, null terminated. */
 	table local_time_zone_table[3];
 } parser_control;
@@ -480,12 +477,10 @@ day:
 	| tORDINAL tDAY {
 		pc->day_ordinal = $1;
 		pc->day_number = $2;
-		pc->ordinal_day_seen = 1;
 	  }
 	| tUNUMBER tDAY {
 		pc->day_ordinal = $1.value;
 		pc->day_number = $2;
-		pc->ordinal_day_seen = 1;
 	  }
 ;
 
@@ -1366,7 +1361,6 @@ int parse_date(struct timespec *result, char const *p,
 	pc.local_zones_seen = 0;
 	pc.dsts_seen = 0;
 	pc.zones_seen = 0;
-	pc.ordinal_day_seen = 0;
 
 #if HAVE_STRUCT_TM_TM_ZONE
 	pc.local_time_zone_table[0].name = tmp->tm_zone;
--
To unsubscribe from this list: send the line "unsubscribe util-linux" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Netdev]     [Ethernet Bridging]     [Linux Wireless]     [Kernel Newbies]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]

  Powered by Linux