From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stas Sergeev Subject: Re: Illegal user Date: Mon, 20 Feb 2006 20:22:52 +0300 Message-ID: <43F9FAEC.6070509@aknet.ru> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------090305020604030807050204" Return-path: Sender: linux-msdos-owner@vger.kernel.org List-Id: To: linux-msdos@vger.kernel.org This is a multi-part message in MIME format. --------------090305020604030807050204 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Stas Sergeev wrote: > If nothing helps, just remove that uid checking from > the parser.y.in file and recompile dosemu. No, that won't work, don't try. Run the attached test program instead, please. --------------090305020604030807050204 Content-Type: text/x-csrc; name="getpw.c" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="getpw.c" #include #include #include #include #include int main() { printf("%p\n", getpwuid(getuid())); perror("getpw"); system("ls -l /etc/passwd"); return 0; } --------------090305020604030807050204--