diff options
Diffstat (limited to 'libmount/src')
| -rw-r--r-- | libmount/src/fs.c | 2 | ||||
| -rw-r--r-- | libmount/src/tab.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libmount/src/fs.c b/libmount/src/fs.c index c01c313b11..64c7ee865c 100644 --- a/libmount/src/fs.c +++ b/libmount/src/fs.c @@ -1668,7 +1668,7 @@ int mnt_fs_append_comment(struct libmnt_fs *fs, const char *comm) if (!fs) return -EINVAL; - return strappend(&fs->comment, comm); + return ul_strappend(&fs->comment, comm); } /** diff --git a/libmount/src/tab.c b/libmount/src/tab.c index bde55b73d7..4209d697a5 100644 --- a/libmount/src/tab.c +++ b/libmount/src/tab.c @@ -318,7 +318,7 @@ int mnt_table_append_intro_comment(struct libmnt_table *tb, const char *comm) { if (!tb) return -EINVAL; - return strappend(&tb->comm_intro, comm); + return ul_strappend(&tb->comm_intro, comm); } /** @@ -359,7 +359,7 @@ int mnt_table_append_trailing_comment(struct libmnt_table *tb, const char *comm) { if (!tb) return -EINVAL; - return strappend(&tb->comm_tail, comm); + return ul_strappend(&tb->comm_tail, comm); } /** |
