Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/libexec/talkd Remove dead assignment; from Henning Petersen ...
details: https://anonhg.NetBSD.org/src/rev/3f4764c1eaa1
branches: trunk
changeset: 340405:3f4764c1eaa1
user: dholland <dholland%NetBSD.org@localhost>
date: Thu Sep 03 08:16:36 2015 +0000
description:
Remove dead assignment; from Henning Petersen in PR 50196.
diffstat:
libexec/talkd/table.c | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diffs (26 lines):
diff -r 05f9946e76aa -r 3f4764c1eaa1 libexec/talkd/table.c
--- a/libexec/talkd/table.c Thu Sep 03 07:34:34 2015 +0000
+++ b/libexec/talkd/table.c Thu Sep 03 08:16:36 2015 +0000
@@ -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 @@
{
TABLE_ENTRY *ptr;
- ptr = table;
if (debug)
syslog(LOG_DEBUG, "delete_invite(%"PRIu32")", id_num);
for (ptr = table; ptr != NIL; ptr = ptr->next) {
Home |
Main Index |
Thread Index |
Old Index