From 32a198f35b7e235c0bf8aa69afc980cbab5676cb Mon Sep 17 00:00:00 2001 From: Frank Morgner Date: Tue, 11 Jun 2013 09:21:32 +0200 Subject: [PATCH] updated license text --- npa/src/boxing.c | 23 ++++++++++++----------- npa/src/example.c | 8 ++++---- npa/src/iso-sm.c | 8 ++++---- npa/src/npa-tool.c | 8 ++++---- npa/src/npa.c | 10 +++++----- npa/src/scutil.c | 8 ++++---- npa/src/sslutil.h | 8 ++++---- 7 files changed, 37 insertions(+), 36 deletions(-) diff --git a/npa/src/boxing.c b/npa/src/boxing.c index 03f0971..4a72515 100644 --- a/npa/src/boxing.c +++ b/npa/src/boxing.c @@ -3,19 +3,20 @@ * * Copyright (C) 2013 Frank Morgner * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. + * This file is part of libnpa. * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. + * libnpa is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * libnpa is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License along with + * libnpa. If not, see . */ #include diff --git a/npa/src/example.c b/npa/src/example.c index d5c2516..44ccca0 100644 --- a/npa/src/example.c +++ b/npa/src/example.c @@ -1,20 +1,20 @@ /* * Copyright (C) 2011 Frank Morgner * - * This file is part of npa. + * This file is part of libnpa. * - * npa is free software: you can redistribute it and/or modify it under the + * libnpa is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * - * npa is distributed in the hope that it will be useful, but WITHOUT ANY + * libnpa is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with - * npa. If not, see . + * libnpa. If not, see . */ /* This example shows how to use the library functions perform_pace to diff --git a/npa/src/iso-sm.c b/npa/src/iso-sm.c index afa5193..ffdab37 100644 --- a/npa/src/iso-sm.c +++ b/npa/src/iso-sm.c @@ -1,20 +1,20 @@ /* * Copyright (C) 2010 Frank Morgner * - * This file is part of ccid. + * This file is part of libnpa. * - * ccid is free software: you can redistribute it and/or modify it under the + * libnpa is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * - * ccid is distributed in the hope that it will be useful, but WITHOUT ANY + * libnpa is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with - * ccid. If not, see . + * libnpa. If not, see . */ #ifdef HAVE_CONFIG_H #include "config.h" diff --git a/npa/src/npa-tool.c b/npa/src/npa-tool.c index 3ba5939..3bec66e 100644 --- a/npa/src/npa-tool.c +++ b/npa/src/npa-tool.c @@ -1,20 +1,20 @@ /* * Copyright (C) 2010-2012 Frank Morgner * - * This file is part of npa. + * This file is part of libnpa. * - * npa is free software: you can redistribute it and/or modify it under the + * libnpa is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * - * npa is distributed in the hope that it will be useful, but WITHOUT ANY + * libnpa is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with - * npa. If not, see . + * libnpa. If not, see . */ #ifdef HAVE_CONFIG_H #include "config.h" diff --git a/npa/src/npa.c b/npa/src/npa.c index 2ca08a4..363c94d 100644 --- a/npa/src/npa.c +++ b/npa/src/npa.c @@ -1,20 +1,20 @@ /* * Copyright (C) 2011 Frank Morgner * - * This file is part of ccid. + * This file is part of libnpa. * - * ccid is free software: you can redistribute it and/or modify it under the + * libnpa is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * - * ccid is distributed in the hope that it will be useful, but WITHOUT ANY + * libnpa is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with - * ccid. If not, see . + * libnpa. If not, see . */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -334,7 +334,7 @@ int get_pace_capabilities(u8 *bitmap) #define ISO_READ_BINARY 0xB0 #define ISO_P1_FLAG_SFID 0x80 -int read_binary_rec(sc_card_t *card, unsigned char sfid, +static int read_binary_rec(sc_card_t *card, unsigned char sfid, u8 **ef, size_t *ef_len) { int r; diff --git a/npa/src/scutil.c b/npa/src/scutil.c index 55968f8..04a4014 100644 --- a/npa/src/scutil.c +++ b/npa/src/scutil.c @@ -1,20 +1,20 @@ /* * Copyright (C) 2010 Frank Morgner * - * This file is part of ccid. + * This file is part of libnpa. * - * ccid is free software: you can redistribute it and/or modify it under the + * libnpa is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * - * ccid is distributed in the hope that it will be useful, but WITHOUT ANY + * libnpa is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with - * ccid. If not, see . + * libnpa. If not, see . */ #ifdef HAVE_CONFIG_H #include "config.h" diff --git a/npa/src/sslutil.h b/npa/src/sslutil.h index 03514c2..46a01a4 100644 --- a/npa/src/sslutil.h +++ b/npa/src/sslutil.h @@ -1,20 +1,20 @@ /* * Copyright (C) 2011 Frank Morgner * - * This file is part of ccid. + * This file is part of libnpa. * - * ccid is free software: you can redistribute it and/or modify it under the + * libnpa is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * - * ccid is distributed in the hope that it will be useful, but WITHOUT ANY + * libnpa is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with - * ccid. If not, see . + * libnpa. If not, see . */ #ifndef _CCID_SSLUTIL_H #define _CCID_SSLUTIL_H