Your message dated Wed, 31 May 2000 19:45:17 +0200 with message-id <39354FAD.ABE605EE@tu-harburg.de> and subject line Bug#4318: Bad function prototype in kdesud has caused the attached bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I'm talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Stephan Kulow (administrator, KDE bugs database) Received: (at submit) by bugs.kde.org; 31 May 2000 12:50:18 +0000 From block@zk3.dec.com Wed May 31 14:50:18 2000 Received: from ztxmail03.ztx.compaq.com ([161.114.1.207]:4112 "EHLO ztxmail03.ztx.compaq.com") by master.kde.org with ESMTP id ; Wed, 31 May 2000 14:50:07 +0200 Received: by ztxmail03.ztx.compaq.com (Postfix, from userid 12345) id 9D4211E54; Wed, 31 May 2000 07:49:57 -0500 (CDT) Received: from oflume.zk3.dec.com (flambe.zk3.dec.com [16.140.96.19]) by ztxmail03.ztx.compaq.com (Postfix) with ESMTP id 3BF0E1D88 for ; Wed, 31 May 2000 07:49:57 -0500 (CDT) Received: from zk3.dec.com by oflume.zk3.dec.com (8.8.8/1.1.22.3/03Mar00-0551AM) id IAA0000032161; Wed, 31 May 2000 08:49:56 -0400 (EDT) Sender: block@zk3.dec.com Message-ID: <39350A59.46D6C178@zk3.dec.com> Date: Wed, 31 May 2000 08:49:30 -0400 From: Ken Block X-Mailer: Mozilla 4.7 [en] (X11; I; OSF1 T4.0 alpha) X-Accept-Language: en MIME-Version: 1.0 To: submit@bugs.kde.org Subject: Bad function prototype in kdesud Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-Path: X-Orcpt: rfc822;submit@bugs.kde.org Package: kdebase Version: 1.9 Even though it is only a prototype, the Compaq C++ requires that you keep the argument names unique. G++ is more lax about this. THe following prototype has two arguments named "s1". ./kdebase/kdesu/kdesud/handler.h.orig 38c38 < QCString makeKey(int namspace, QCString s1, QCString s1=0, QCString s3=0); --- > QCString makeKey(int namspace, QCString s1, QCString s2=0, QCString s3=0);