You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
320 B

  1. --- a/src/lib/dnssd.c
  2. +++ b/src/lib/dnssd.c
  3. @@ -167,7 +167,7 @@ dnssd_init(int *error)
  4. return NULL;
  5. }
  6. #elif USE_LIBDL
  7. - dnssd->module = dlopen("libdns_sd.so", RTLD_LAZY);
  8. + dnssd->module = dlopen("libdns_sd.so.1", RTLD_LAZY);
  9. if (!dnssd->module) {
  10. if (error) *error = DNSSD_ERROR_LIBNOTFOUND;
  11. free(dnssd);