X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Ferror.c;h=c4199edf3f579e9298a3c7feada533dedb46ffd0;hb=08ac450b42b7533e97c02c02bbbef8946b9582fb;hp=419a39fa1f0cfc43c1f4d0223e9d280e573c0f1b;hpb=37d19f15523b6fe4d1fef2329abe421221b3d4b3;p=catta diff --git a/src/error.c b/src/error.c index 419a39f..c4199ed 100644 --- a/src/error.c +++ b/src/error.c @@ -1,18 +1,18 @@ /*** - This file is part of avahi. + This file is part of catta. - avahi is free software; you can redistribute it and/or modify it + catta 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. - avahi is distributed in the hope that it will be useful, but WITHOUT + catta 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. You should have received a copy of the GNU Lesser General Public - License along with avahi; if not, write to the Free Software + License along with catta; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. ***/ @@ -21,11 +21,11 @@ #include #endif -#include +#include -const char *avahi_strerror(int error) { +const char *catta_strerror(int error) { - const char * const msg[- AVAHI_ERR_MAX] = { + const char * const msg[- CATTA_ERR_MAX] = { "OK", "Operation failed", "Bad state", @@ -55,7 +55,7 @@ const char *avahi_strerror(int error) { "Memory exhausted", "The object passed in was not valid", "Daemon not running", - "Invalid interface index", + "Invalid iface index", "Invalid protocol specification", "Invalid flags", @@ -87,7 +87,7 @@ const char *avahi_strerror(int error) { "The requested operation is invalid because redundant" }; - if (-error < 0 || -error >= -AVAHI_ERR_MAX) + if (-error < 0 || -error >= -CATTA_ERR_MAX) return "Invalid Error Code"; return msg[-error];