diff options
| author | Karel Zak <kzak@redhat.com> | 2025-06-30 11:15:30 +0200 |
|---|---|---|
| committer | Karel Zak <kzak@redhat.com> | 2025-06-30 11:18:09 +0200 |
| commit | c128ee3ea488174230065f6a35286e01e98996f8 (patch) | |
| tree | a8a73c33a9b35b6a7007e53f3b44b6de6f63702c /libmount/src | |
| parent | aa07db0ac1449627b3926669b052b07a1d3986ca (diff) | |
| download | util-linux-c128ee3ea488174230065f6a35286e01e98996f8.tar.gz | |
lib/strutils: add ul_ prefix to strconcat() functions
Addresses: https://github.com/util-linux/util-linux/issues/3626
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'libmount/src')
| -rw-r--r-- | libmount/src/tab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmount/src/tab.c b/libmount/src/tab.c index c8433674f9..bde55b73d7 100644 --- a/libmount/src/tab.c +++ b/libmount/src/tab.c @@ -1900,7 +1900,7 @@ int __mnt_table_is_fs_mounted(struct libmnt_table *tb, struct libmnt_fs *fstab_f src = mnt_fs_get_srcpath(rootfs); if (fstype && strncmp(fstype, "nfs", 3) == 0 && root) { /* NFS stores the root at the end of the source */ - src = src2 = strconcat(src, root); + src = src2 = ul_strconcat(src, root); free(root); root = NULL; } |
