aboutsummaryrefslogtreecommitdiffstats
path: root/g13/mountinfo.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2011-02-04 11:57:53 +0000
committerWerner Koch <[email protected]>2011-02-04 11:57:53 +0000
commitb008274afdbe375b32a7e66dbd073e200f6f0587 (patch)
tree219e239d39cf06be3f03aa82fb572080ac163a15 /g13/mountinfo.c
parentLet autogen.sh check the git config (diff)
downloadgnupg-b008274afdbe375b32a7e66dbd073e200f6f0587.tar.gz
gnupg-b008274afdbe375b32a7e66dbd073e200f6f0587.zip
Nuked almost all trailing white space.post-nuke-of-trailing-ws
We better do this once and for all instead of cluttering all future commits with diffs of trailing white spaces. In the majority of cases blank or single lines are affected and thus this change won't disturb a git blame too much. For future commits the pre-commit scripts checks that this won't happen again.
Diffstat (limited to 'g13/mountinfo.c')
-rw-r--r--g13/mountinfo.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/g13/mountinfo.c b/g13/mountinfo.c
index 07c6240d4..90b205ed5 100644
--- a/g13/mountinfo.c
+++ b/g13/mountinfo.c
@@ -134,10 +134,10 @@ mountinfo_del_mount (const char *container, const char *mountpoint,
{
/* FIXME: This does not always work because the umount may
not have completed yet. We should add the mountpoints
- to an idle queue and retry a remove. */
+ to an idle queue and retry a remove. */
if (rmdir (m->mountpoint))
log_error ("error removing mount point `%s': %s\n",
- m->mountpoint,
+ m->mountpoint,
gpg_strerror (gpg_error_from_syserror ()));
}
m->in_use = 0;
@@ -192,8 +192,7 @@ mountinfo_dump_all (void)
for (idx=0, m = mounttable; idx < mounttable_size; idx++, m++)
if (m->in_use)
- log_info ("mtab[%d] %s on %s type %d rid %u%s\n",
+ log_info ("mtab[%d] %s on %s type %d rid %u%s\n",
idx, m->container, m->mountpoint, m->conttype, m->rid,
m->flags.remove?" [remove]":"");
}
-