From: William Lee Irwin III <wli@holomorphy.com>
To: J?rn Engel <joern@wohnheim.fh-wedel.de>,
root@vanheusden.com, linux-kernel@vger.kernel.org,
appel@vanheusden.com, folkert@vanheusden.com
Subject: Re: statistics for this mailinglist
Date: Sun, 4 May 2003 02:28:40 -0700 [thread overview]
Message-ID: <20030504092840.GM8978@holomorphy.com> (raw)
In-Reply-To: <20030504091024.GL8978@holomorphy.com>
On Sun, 4 May 2003 00:43:05 -0700, William Lee Irwin III wrote:
>>> You still haven't fixed the bug in your script. Please post the
>>> script so it can be fixed.
On Sun, May 04, 2003 at 11:06:39AM +0200, J?rn Engel wrote:
>> Google is your friend:
>> http://www.vanheusden.com/mboxstats/
>> But I wonder if you really want to fix a text munching program written
>> in c++. What an interesting choice.
On Sun, May 04, 2003 at 02:10:24AM -0700, William Lee Irwin III wrote:
> I don't. I do, however, have a vested interest in getting the affected
> stats accurately reported again.
The "isemail" parameter to array::addstring() calls out to
get_email_address() to get the string, which breaks the string on any
' ' character (though, oddly, not other kinds of whitespace), while
hunting for a run of consecutive characters between '<' and '>'.
Otherwise, a non-blank-breaking convention that performs its work on
the raw string passed to it is used.
i.e. the error is a one-liner where the get_email_address() convention
is incorrectly specified by passing a 0 instead of a 1 as the second
argument of array::addstring() when the header matches "Organization:".
-- wli
--- main.cpp.orig 2003-05-04 02:22:49.000000000 -0700
+++ main.cpp 2003-05-04 02:23:02.000000000 -0700
@@ -459,7 +459,7 @@
}
else if (strncmp(msg[loop], "Organization: ", 14) == 0)
{
- org.addstring(&msg[loop][14], 1);
+ org.addstring(&msg[loop][14], 0);
}
else if (strncmp(msg[loop], "User-Agent: ", 12) == 0)
{
next prev parent reply other threads:[~2003-05-04 9:16 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-05-04 2:01 statistics for this mailinglist root
2003-05-04 7:43 ` William Lee Irwin III
2003-05-04 9:06 ` Jörn Engel
2003-05-04 9:10 ` William Lee Irwin III
2003-05-04 9:28 ` William Lee Irwin III [this message]
-- strict thread matches above, loose matches on Subject: below --
2003-05-18 2:01 root
2003-05-11 2:01 root
2003-05-11 9:03 ` Riley Williams
2003-05-11 9:07 ` Willy Tarreau
[not found] <BKEGKPICNAKILKJKMHCACEFFCKAA.Riley@Williams.Name>
2003-05-04 21:03 ` Folkert van Heusden
2003-04-27 7:47 Peter Kjellerstedt
2003-04-27 2:01 root
2003-04-27 2:24 ` Larry McVoy
2003-04-27 3:10 ` rmoser
2003-04-27 3:17 ` Larry McVoy
2003-04-27 2:30 ` Randy.Dunlap
2003-04-27 9:17 ` Jörn Engel
2003-04-20 2:01 root
2003-04-20 2:04 ` William Lee Irwin III
2003-04-15 19:41 Manfred Spraul
2003-04-15 21:11 ` John Bradford
2003-04-13 2:01 root
2003-04-13 22:43 ` William Lee Irwin III
2003-04-14 13:50 ` Randy.Dunlap
2003-04-15 15:51 ` Robert Love
2003-04-06 2:01 root
2003-03-30 2:01 root
2003-03-16 3:01 root
2003-02-24 18:00 root
2003-02-24 18:09 ` Maciej Soltysiak
2003-02-24 18:22 ` Matti Aarnio
2003-02-24 18:27 ` Nathan Straz
2003-02-25 0:33 ` jw schultz
2003-02-25 19:02 ` Folkert van Heusden
2003-02-25 22:34 ` 'jw schultz'
2003-02-25 8:18 ` Jeandre du Toit
2003-02-24 18:41 ` Kenneth Johansson
2003-02-24 21:30 ` Rik van Riel
2003-02-25 19:00 ` Folkert van Heusden
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=20030504092840.GM8978@holomorphy.com \
--to=wli@holomorphy.com \
--cc=appel@vanheusden.com \
--cc=folkert@vanheusden.com \
--cc=joern@wohnheim.fh-wedel.de \
--cc=linux-kernel@vger.kernel.org \
--cc=root@vanheusden.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.