public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
* cluster: STABLE2 - fence_ipmilan: Better name for unused variable in expect.c
@ 2009-02-06  8:44 Jan Friesse
  0 siblings, 0 replies; only message in thread
From: Jan Friesse @ 2009-02-06  8:44 UTC (permalink / raw)
  To: cluster-cvs-relay

Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=a9dcdf4cf75801d8ea1a8688e0090d4d6d515d91
Commit:        a9dcdf4cf75801d8ea1a8688e0090d4d6d515d91
Parent:        e6f4a34fe817efe20cc044c0ed0de070ee2641cd
Author:        Jan Friesse <jfriesse@redhat.com>
AuthorDate:    Fri Feb 6 09:42:54 2009 +0100
Committer:     Jan Friesse <jfriesse@redhat.com>
CommitterDate: Fri Feb 6 09:43:56 2009 +0100

fence_ipmilan: Better name for unused variable in expect.c

Foo variable name is not very descriptive.
---
 fence/agents/ipmilan/expect.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/fence/agents/ipmilan/expect.c b/fence/agents/ipmilan/expect.c
index 45deb6a..85ba487 100644
--- a/fence/agents/ipmilan/expect.c
+++ b/fence/agents/ipmilan/expect.c
@@ -68,7 +68,7 @@ ExpectToken(int	fd, struct Etoken * toklist, int to_secs, char * buf
 	clock_t		ticks;
 	int		nchars = 1; /* reserve space for an EOS */
 	struct timeval	tv;
-	struct tms      foo_tms; /*This tms is used, because cygwin doesn't like NULL in times*/
+	struct tms      tms_unused; /*This tms is unused, but cygwin doesn't like NULL in times*/
 	struct Etoken *	this;
 
 	/* Figure out when to give up.  Handle lbolt wraparound */
@@ -77,7 +77,7 @@ ExpectToken(int	fd, struct Etoken * toklist, int to_secs, char * buf
 		return -1;
 	}
 	
-	starttime = times(&foo_tms);
+	starttime = times(&tms_unused);
 	ticks = (to_secs*CLOCKS_PER_SEC);
 	endtime = starttime + ticks;
 
@@ -94,7 +94,7 @@ ExpectToken(int	fd, struct Etoken * toklist, int to_secs, char * buf
 	}
 
 
-	while (now = times(&foo_tms),
+	while (now = times(&tms_unused),
 		(wraparound && (now > starttime || now <= endtime))
 		||	(!wraparound && now <= endtime)) {
 


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-02-06  8:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-02-06  8:44 cluster: STABLE2 - fence_ipmilan: Better name for unused variable in expect.c Jan Friesse

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).