From: Jasper Spaans <jasper@vs19.net>
To: torvalds@osdl.org, linux-kernel@vger.kernel.org
Subject: [patch] net/appletalk/aarp.c typo
Date: Wed, 10 Sep 2003 21:12:09 +0200 [thread overview]
Message-ID: <20030910191209.GA24609@spaans.vs19.net> (raw)
Hello,
The patch recently applied to net/appletalk/aarp.c has a typo in it; line
944 in bk currently reads
return *pos ? iter_next(iter, pos) : SEQ_START_TOKEN);
which will not compile.
The following patch fixes that; please apply.
# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.1175 -> 1.1176
# net/appletalk/aarp.c 1.17 -> 1.18
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 03/09/10 jasper@vs19.net 1.1176
# Fix up typo in net/appletalk/aarp.c to make it compile again.
# --------------------------------------------
#
diff -Nru a/net/appletalk/aarp.c b/net/appletalk/aarp.c
--- a/net/appletalk/aarp.c Wed Sep 10 21:09:52 2003
+++ b/net/appletalk/aarp.c Wed Sep 10 21:09:52 2003
@@ -941,7 +941,7 @@
iter->table = resolved;
iter->bucket = 0;
- return *pos ? iter_next(iter, pos) : SEQ_START_TOKEN);
+ return *pos ? iter_next(iter, pos) : SEQ_START_TOKEN;
}
static void *aarp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
Bye,
--
Jasper Spaans http://jsp.vs19.net/
21:03:46 up 9702 days, 11:50, 0 users, load average: 12.41 6.76 3.53
reply other threads:[~2003-09-10 19:13 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20030910191209.GA24609@spaans.vs19.net \
--to=jasper@vs19.net \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@osdl.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome