From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55617) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ymcxw-00073G-Or for qemu-devel@nongnu.org; Mon, 27 Apr 2015 02:56:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ymcxq-0007LL-8z for qemu-devel@nongnu.org; Mon, 27 Apr 2015 02:56:28 -0400 Received: from isrv.corpit.ru ([86.62.121.231]:42141) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ymcxq-0007JM-1T for qemu-devel@nongnu.org; Mon, 27 Apr 2015 02:56:22 -0400 Message-ID: <553DDD8D.6050602@msgid.tls.msk.ru> Date: Mon, 27 Apr 2015 09:56:13 +0300 From: Michael Tokarev MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] libcacard: cac_is_cac_card? List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel This function is declared in libcacard/cac.h VCardStatus cac_is_cac_card(VReader *reader); it is referenced in a ifdef-ed out code in libcacard/vcard_emul_type.c: VCardEmulType vcard_emul_type_select(VReader *vreader) { #ifdef notdef /* since there is only one emulator no need to call this function */ if (cac_is_cac_card(vreader) == VCARD_DONE) { return VCARD_EMUL_CAC; } #endif /* return the default */ return VCARD_EMUL_CAC; } and it is mentioned in libcacard/libcacard.syms. But it is not defined anywhere. Should it be removed from all places it is referenced at, or should it be implemented instead? Thanks, /mjt