Debian bug report logs - #921
[patch] debian , 8bit finger , netstd-package

Reported by: Rune Karlsen <runek@eldarin.uio.no>; 24 days old.

Message received at debian-bugs:


From eldarin.uio.no!runek Sat May 27 14:45:16 1995
Return-Path: <runek@eldarin.uio.no>
Received: from pixar.com by mongo.pixar.com with smtp
	(Smail3.1.28.1 #15) id m0sFTfX-0005kIC; Sat, 27 May 95 14:45 PDT
Received: from pat.uio.no by pixar.com with SMTP id AA11111
  (5.67b/IDA-1.5 for debian-bugs-pipe@mongo.pixar.com); Sat, 27 May 1995 14:43:48 -0700
Received: from eldarin.uio.no by pat.uio.no with SMTP (PP) 
          id <06729-0@pat.uio.no>; Sat, 27 May 1995 23:44:53 +0200
Date: Sat, 27 May 95 23:44:12 0200
Sender: runek@extern.uio.no
From: Rune Karlsen <runek@eldarin.uio.no>
Organization: University of Oslo, Norway
X-Mailer: Mozilla 1.1N (X11; I; Linux 1.2.1 i486)
Mime-Version: 1.0
To: debian-bugs@pixar.com
Subject: [patch] debian , 8bit finger , netstd-package
X-Url: http://www.cl.cam.ac.uk:/users/iwj10/debian-bugs/Reporting.html
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset=us-ascii
Message-Id: <"pat.uio.no.750:27.04.95.21.45.08"@pat.uio.no>

Hi!

/usr/bin/finger converts 8bit characters to M-x when fingering locally,
 or from remote hosts.

Here is a patch - also sent to Tobias (the netstd-package maintainer).
Keep up the good work, debian looks good .)




finger.runek.diff:--- finger.orig/lprint.c        Sat May 28 23:37:59 1994
+++ finger/lprint.c     Sat May 27 22:59:55 1995
@@ -328,7 +328,7 @@
 vputc(ch)
        register int ch;
 {
-       int meta;
+/*     int meta;
 
        if (!isascii(ch)) {
                (void)putchar('M');
@@ -343,4 +343,15 @@
                (void)putchar('^');
                (void)putchar(ch == '\177' ? '?' : ch | 0100);
        }
+*/
+
+/* 8bit character handling support */
+/* Rune Karlsen (runek@eldarin.uio.no) */
+
+       if (isprint(ch) || isspace(ch) || ch >= 0240)
+               (void)putchar(ch);
+       else
+               (void)putchar(ch ^ 0100);
+
+
 }




------
 Sincerely,
Rune Karlsen (runek@eldarin.uio.no  http://www.ifi.uio.no)



Acknowledgement sent to Rune Karlsen <runek@eldarin.uio.no>:
New bug report received and forwarded.

Your message didn't have a Package: line at the start (in the pseudo-header following the real mail header), or didn't have a psuedo-header at all.

This makes it much harder for us to categorise and deal with your problem report; please ensure that you say which package(s) and version(s) the problem is with next time. Some time in the future the problem reports system may start rejecting such messages.

Full text available.


Report forwarded to debian-devel@pixar.com:
Bug#921. Full text available.
Ian Jackson / iwj10@thor.cam.ac.uk, with the debian-bugs tracking mechanism
This page last modified 06:43:02 GMT Wed 21 Jun