-- Removed "id" field from queued reminder.

This commit is contained in:
dfs
1999-10-18 20:38:48 +00:00
parent 55059d60e7
commit 0f4d6b5f8b

View File

@@ -11,7 +11,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: queue.c,v 1.12 1999-10-18 20:38:18 dfs Exp $";
static char const RCSID[] = "$Id: queue.c,v 1.13 1999-10-18 20:38:48 dfs Exp $";
/* Solaris needs this to get select() prototype */
#ifdef __sun__
@@ -67,7 +67,6 @@ typedef struct queuedrem {
char sched[VAR_NAME_LEN+1];
char tag[TAG_LEN+1];
TimeTrig tt;
int id;
} QueuedRem;
/* Global variables */
@@ -126,7 +125,6 @@ char *sched;
qelem->ntrig = 0;
strcpy(qelem->sched, sched);
strcpy(qelem->tag, trig->tag);
qelem->id = NumQueued++;
QueueHead = qelem;
return OK;
}