[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: "~/file" seems to be broken in akcl.1-600
- To: kcl@cli.com
- Subject: RE: "~/file" seems to be broken in akcl.1-600
- From: Probert <probert%cs@hub.ucsb.edu>
- Date: Sat, 14 Sep 91 13:00:32 PDT
- Posted-date: Sat, 14 Sep 91 13:00:32 PDT
Earlier today I sent mail about "~/file" being broken
in akcl.1-600.
I looked through the source and discovered the obvious error in unixfsys.c
at line 203.
pwent = (n==1 ? getpwuid(getpwuid(getuid())) : getpwnam(name));
should be
pwent = (n==1 ? getpwuid(getuid()) : getpwnam(name));
--
Dave Probert
probert@cs.ucsb.edu