summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2005-05-09 16:22:17 -0400
committerTheodore Ts'o <tytso@mit.edu>2005-05-09 16:22:17 -0400
commitf35fd3d5eeb3e35660ea87adbc170978c3cdf9e3 (patch)
treeb9f05bf12b2de70b57d5cde79defe575ef5f66f3 /misc
parent2a93a6332ed02e9bff2a66353091772aedafd10c (diff)
downloade2fsprogs-f35fd3d5eeb3e35660ea87adbc170978c3cdf9e3.tar.gz
Fix some minor typo's and grammar's strings, and remove debugging strings
from needing to be translated. Patch is from Benno Schulenberg.
Diffstat (limited to 'misc')
-rw-r--r--misc/ChangeLog7
-rw-r--r--misc/chattr.c2
-rw-r--r--misc/tune2fs.c2
3 files changed, 9 insertions, 2 deletions
diff --git a/misc/ChangeLog b/misc/ChangeLog
index 67dec48f..5399e735 100644
--- a/misc/ChangeLog
+++ b/misc/ChangeLog
@@ -1,3 +1,10 @@
+2005-05-09 Theodore Ts'o <tytso@mit.edu>
+
+ * tune2fs.c (main): Fix grammar in message printed when setting
+ the check interval (tune2fs -i)
+
+ * chattr.c: Fix case on usage message.
+
2005-05-07 Theodore Ts'o <tytso@mit.edu>
* blkid.c (main): Use the new functions blkid_dev_set_search() and
diff --git a/misc/chattr.c b/misc/chattr.c
index bb968646..0b800ef1 100644
--- a/misc/chattr.c
+++ b/misc/chattr.c
@@ -84,7 +84,7 @@ static void fatal_error(const char * fmt_string, int errcode)
exit (errcode);
}
-#define usage() fatal_error(_("usage: %s [-RV] [-+=AacDdijsSu] [-v version] files...\n"), \
+#define usage() fatal_error(_("Usage: %s [-RV] [-+=AacDdijsSu] [-v version] files...\n"), \
1)
struct flags_char {
diff --git a/misc/tune2fs.c b/misc/tune2fs.c
index e0d7dd67..83851870 100644
--- a/misc/tune2fs.c
+++ b/misc/tune2fs.c
@@ -819,7 +819,7 @@ int main (int argc, char ** argv)
if (i_flag) {
sb->s_checkinterval = interval;
ext2fs_mark_super_dirty(fs);
- printf (_("Setting interval between check %lu seconds\n"), interval);
+ printf (_("Setting interval between checks to %lu seconds\n"), interval);
}
if (m_flag) {
sb->s_r_blocks_count = (sb->s_blocks_count / 100)