]> xenbits.xensource.com Git - libvirt.git/commitdiff
src: update log/error messages pointing to old mailing list addr
authorDaniel P. Berrangé <berrange@redhat.com>
Fri, 27 Oct 2023 09:59:02 +0000 (10:59 +0100)
committerDaniel P. Berrangé <berrange@redhat.com>
Tue, 31 Oct 2023 10:04:25 +0000 (10:04 +0000)
Reviewed-by: Ján Tomko <jtomko@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
src/conf/domain_capabilities.c
src/storage_file/storage_file_probe.c
src/util/virarch.c

index 2fa5756184678e54324914e2530df8baeebdcab8..f6e09dc5848fd339af8644f9db2915e4dcb8b3a6 100644 (file)
@@ -245,7 +245,7 @@ virDomainCapsEnumSet(virDomainCapsEnum *capsEnum,
         if (!val) {
             /* Integer overflow */
             virReportError(VIR_ERR_INTERNAL_ERROR,
-                           _("integer overflow on %1$s. Please contact the libvirt development team at libvir-list@redhat.com"),
+                           _("integer overflow on %1$s. Please contact the libvirt development team at devel@lists.libvirt.org"),
                            capsEnumName);
             return -1;
         }
index b656ceed10432f478ee15d1f1767980475c82c1c..19f77086da66d0fb85665327c8daa93b78ebb04c 100644 (file)
@@ -761,7 +761,7 @@ virStorageFileProbeFormatFromBuf(const char *path,
 
     if (possibleFormat != VIR_STORAGE_FILE_RAW)
         VIR_WARN("File %s matches %s magic, but version is wrong. "
-                 "Please report new version to libvir-list@redhat.com",
+                 "Please report new version to devel@lists.libvirt.org",
                  path, virStorageFileFormatTypeToString(possibleFormat));
 
  cleanup:
index 2134dd6a9d0135341633cf9915a1b15e31d14732..01e520de73e100136e8034c46a474f127f69da31 100644 (file)
@@ -197,7 +197,7 @@ virArch virArchFromHost(void)
     case PROCESSOR_ARCHITECTURE_ARM64:
         return VIR_ARCH_AARCH64;
     default:
-        VIR_WARN("Unknown host arch '%d', report to libvir-list@redhat.com",
+        VIR_WARN("Unknown host arch '%d', report to devel@lists.libvirt.org",
                  info.wProcessorArchitecture);
         return VIR_ARCH_NONE;
     }
@@ -225,7 +225,7 @@ virArch virArchFromHost(void)
     } else {
         /* Otherwise assume the canonical name */
         if ((arch = virArchFromString(ut.machine)) == VIR_ARCH_NONE) {
-            VIR_WARN("Unknown host arch %s, report to libvir-list@redhat.com",
+            VIR_WARN("Unknown host arch %s, report to devel@lists.libvirt.org",
                      ut.machine);
         }
     }