From 6e7840fcacfc7ccb2e2f3c45b29a87369b59d70a Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Wed, 17 Aug 2005 20:16:10 +0000 Subject: [PATCH] Fixed error message --- lib/getheader.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/getheader.c b/lib/getheader.c index 582a77e5..997bea94 100644 --- a/lib/getheader.c +++ b/lib/getheader.c @@ -4,7 +4,7 @@ * Purpose ...............: Read fidonet .pkt header * ***************************************************************************** - * Copyright (C) 1997-2004 + * Copyright (C) 1997-2005 * * Michiel Broek FIDO: 2:280/2802 * Beekmansbos 10 @@ -65,7 +65,7 @@ int getheader(faddr *f, faddr *t, FILE *pkt, char *pname, int session) * Read type 2+ packet header, see FSC-0039 version 4 and FTS-0001 */ if (fread(buffer, 1, 0x3a, pkt) != 0x3a) { - WriteError("$Could not read header (%s)", pname); + WriteError("Could not read header (%s)", pname); return 2; } if ((buffer[0x12] + (buffer[0x13] << 8)) != 2) {