]> git.meshlink.io Git - catta/blobdiff - src/error.c
rename everything avahi to catta
[catta] / src / error.c
index 419a39fa1f0cfc43c1f4d0223e9d280e573c0f1b..543d1b1ad1e7607f7544ed1572a1c748c57d40dd 100644 (file)
@@ -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.
  ***/
 #include <config.h>
 #endif
 
-#include <avahi/error.h>
+#include <catta/error.h>
 
-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",
@@ -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];