]> git.sur5r.net Git - bacula/bacula/commitdiff
Attempt to fix IPV6 not configured
authorKern Sibbald <kern@sibbald.com>
Fri, 10 Mar 2017 12:22:09 +0000 (13:22 +0100)
committerKern Sibbald <kern@sibbald.com>
Fri, 10 Mar 2017 12:22:09 +0000 (13:22 +0100)
bacula/src/lib/bsock.c

index 1a694cc231ce827e6e4d7df89dc0ccfeb5a6ecad..e0bf32b35c663e38d96eb7c590a6e53852b6d062 100644 (file)
@@ -213,6 +213,16 @@ bool BSOCK::open(JCR *jcr, const char *name, char *host, char *service,
              * we don't support. Suppress the error and try the next address.
              */
             break;
+#endif
+#ifdef EPROTONOSUPPORT
+         /* See above comments */
+         case EPROTONOSUPPORT:
+            break;
+#endif
+#ifdef EPROTOTYPE
+         /* See above comments */
+         case EPROTOTYPE:
+            break;
 #endif
          default:
             *fatal = 1;