Module Name:    src
Committed By:   dholland
Date:           Thu Sep  3 08:16:36 UTC 2015

Modified Files:
        src/libexec/talkd: table.c

Log Message:
Remove dead assignment; from Henning Petersen in PR 50196.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/libexec/talkd/table.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/libexec/talkd/table.c
diff -u src/libexec/talkd/table.c:1.10 src/libexec/talkd/table.c:1.11
--- src/libexec/talkd/table.c:1.10	Mon Mar 16 01:13:38 2009
+++ src/libexec/talkd/table.c	Thu Sep  3 08:16:36 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: table.c,v 1.10 2009/03/16 01:13:38 lukem Exp $	*/
+/*	$NetBSD: table.c,v 1.11 2015/09/03 08:16:36 dholland Exp $	*/
 
 /*
  * Copyright (c) 1983, 1993
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)table.c	8.1 (Berkeley) 6/4/93";
 #else
-__RCSID("$NetBSD: table.c,v 1.10 2009/03/16 01:13:38 lukem Exp $");
+__RCSID("$NetBSD: table.c,v 1.11 2015/09/03 08:16:36 dholland Exp $");
 #endif
 #endif /* not lint */
 
@@ -199,7 +199,6 @@ delete_invite(uint32_t id_num)
 {
 	TABLE_ENTRY *ptr;
 
-	ptr = table;
 	if (debug)
 		syslog(LOG_DEBUG, "delete_invite(%"PRIu32")", id_num);
 	for (ptr = table; ptr != NIL; ptr = ptr->next) {

Reply via email to