summaryrefslogtreecommitdiffstats
path: root/libmount/src/tab_parse.c
diff options
context:
space:
mode:
authorOndrej Oprala2013-07-30 14:17:46 +0200
committerKarel Zak2013-08-01 11:21:47 +0200
commit3035ba93af698f28c91acc85ffbfeeeb74b8f8da (patch)
tree8bc3bd4a86fa2c11c26f237b889641b07aac2274 /libmount/src/tab_parse.c
parentdmesg: don't use pager for --follow (diff)
downloadkernel-qcow2-util-linux-3035ba93af698f28c91acc85ffbfeeeb74b8f8da.tar.gz
kernel-qcow2-util-linux-3035ba93af698f28c91acc85ffbfeeeb74b8f8da.tar.xz
kernel-qcow2-util-linux-3035ba93af698f28c91acc85ffbfeeeb74b8f8da.zip
libmount: change tailing to trailing in *_tailing_comments functions
Signed-off-by: Ondrej Oprala <ooprala@redhat.com>
Diffstat (limited to 'libmount/src/tab_parse.c')
-rw-r--r--libmount/src/tab_parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmount/src/tab_parse.c b/libmount/src/tab_parse.c
index 527e14ee2..f3947020c 100644
--- a/libmount/src/tab_parse.c
+++ b/libmount/src/tab_parse.c
@@ -404,10 +404,10 @@ static int append_comment(struct libmnt_table *tb,
if (intro)
rc = mnt_table_append_intro_comment(tb, comm);
else if (eof) {
- rc = mnt_table_set_tailing_comment(tb,
+ rc = mnt_table_set_trailing_comment(tb,
mnt_fs_get_comment(fs));
if (!rc)
- rc = mnt_table_append_tailing_comment(tb, comm);
+ rc = mnt_table_append_trailing_comment(tb, comm);
if (!rc)
rc = mnt_fs_set_comment(fs, NULL);
} else