home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #23 / NN_1992_23.iso / spool / gnu / utils / bug / 1844 < prev    next >
Encoding:
Text File  |  1992-10-15  |  1.4 KB  |  41 lines

  1. Newsgroups: gnu.utils.bug
  2. Path: sparky!uunet!convex!linac!pacific.mps.ohio-state.edu!cis.ohio-state.edu!essex.ecn.uoknor.edu!rob
  3. From: rob@essex.ecn.uoknor.edu (Robert K Shull)
  4. Subject: Re: finger-1.36 minor bug on hpxu-id
  5. Message-ID: <1992Oct14.195653.12195@constellation.ecn.uoknor.edu>
  6. Sender: gnulists@ai.mit.edu
  7. Organization: Engineering Computer Network, University of Oklahoma, Norman, OK, USA
  8. References: <NEAL.92Oct13093319@neal.ctd.comsat.com>
  9. Distribution: gnu
  10. Date: Wed, 14 Oct 1992 19:56:53 GMT
  11. Approved: bug-gnu-utils@prep.ai.mit.edu
  12. Lines: 27
  13.  
  14. neal@ctd.COMsat.COM (Neal Becker) writes:
  15.  
  16. >Thanks for finger-1.36!  Installation was a lot easier than 1.35.  One
  17. >minor problem:
  18.  
  19. >On hpux 8.07 finger shows entries for terminal "co" (console, I guess)
  20. >which all show idle time of 24 years!  Anyone know why?
  21.  
  22. The client end converts the two times it keeps to network order, but
  23. the server doesn't convert them back.
  24. The following patch to fingerd.c appears to work ok.
  25.     Robert
  26.  
  27. ===================================================================
  28. RCS file: RCS/fingerd.c,v
  29. retrieving revision 1.1
  30. diff -r1.1 fingerd.c
  31. 670a671,672
  32. >         packets[i]->login_time = ntohl (packets[i]->login_time);
  33. >         packets[i]->idle_time = ntohl (packets[i]->idle_time);
  34.  
  35. -- 
  36. Robert K. Shull, Sr. Applications Programmer, Engineering Computer Network
  37. rob@mailhost.ecn.uoknor.edu
  38. Disclaimer: OU can't afford opinions, so these must be mine.
  39.  
  40.  
  41.