mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
20 lines
371 B
C
20 lines
371 B
C
|
/*
|
||
|
* Copyright (C) 2022 Red Hat, Inc.
|
||
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
#include "internal.h"
|
||
|
#include "virfile.h"
|
||
|
|
||
|
char *
|
||
|
virFindFileInPath(const char *file)
|
||
|
{
|
||
|
if (STREQ_NULLABLE(file, "dnsmasq"))
|
||
|
return g_strdup("/usr/sbin/dnsmasq");
|
||
|
|
||
|
/* We should not need any other binaries so return NULL. */
|
||
|
return NULL;
|
||
|
}
|