mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-20 06:50:22 +03:00
virfile: Drop virBuildPathInternal()
After previous cleanup the virBuildPathInternal() function is no longer used. Drop it. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
394533f69f
commit
28602827e9
@ -2280,7 +2280,6 @@ virFDStreamSetInternalCloseCb;
|
||||
saferead;
|
||||
safewrite;
|
||||
safezero;
|
||||
virBuildPathInternal;
|
||||
virCloseFrom;
|
||||
virCloseRange;
|
||||
virCloseRangeInit;
|
||||
|
@ -1490,28 +1490,6 @@ virFileFindMountPoint(const char *type G_GNUC_UNUSED)
|
||||
|
||||
#endif /* defined WITH_MNTENT_H && defined WITH_GETMNTENT_R */
|
||||
|
||||
void
|
||||
virBuildPathInternal(char **path, ...)
|
||||
{
|
||||
char *path_component = NULL;
|
||||
g_auto(virBuffer) buf = VIR_BUFFER_INITIALIZER;
|
||||
va_list ap;
|
||||
|
||||
va_start(ap, path);
|
||||
|
||||
path_component = va_arg(ap, char *);
|
||||
virBufferAdd(&buf, path_component, -1);
|
||||
|
||||
while ((path_component = va_arg(ap, char *)) != NULL) {
|
||||
virBufferAddChar(&buf, '/');
|
||||
virBufferAdd(&buf, path_component, -1);
|
||||
}
|
||||
|
||||
va_end(ap);
|
||||
|
||||
*path = virBufferContentAndReset(&buf);
|
||||
}
|
||||
|
||||
/* Read no more than the specified maximum number of bytes. */
|
||||
static char *
|
||||
saferead_lim(int fd, size_t max_len, size_t *length)
|
||||
|
@ -307,11 +307,6 @@ int virFileOpenTty(int *ttymaster,
|
||||
|
||||
char *virFileFindMountPoint(const char *type);
|
||||
|
||||
/* NB: this should be combined with virFileBuildPath */
|
||||
#define virBuildPath(path, ...) \
|
||||
virBuildPathInternal(path, __VA_ARGS__, NULL)
|
||||
void virBuildPathInternal(char **path, ...) G_GNUC_NULL_TERMINATED;
|
||||
|
||||
typedef struct _virHugeTLBFS virHugeTLBFS;
|
||||
struct _virHugeTLBFS {
|
||||
char *mnt_dir; /* Where the FS is mount to */
|
||||
|
Loading…
x
Reference in New Issue
Block a user