]> granicus.if.org Git - sudo/commitdiff
Be specific that we are talking about the Unix epoch; bug #615
authorTodd C. Miller <Todd.Miller@courtesan.com>
Tue, 3 Sep 2013 20:50:28 +0000 (14:50 -0600)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Tue, 3 Sep 2013 20:50:28 +0000 (14:50 -0600)
plugins/sudoers/po/sudoers.pot
plugins/sudoers/timestamp.c

index dc0778395a79fa70a153f0f8569b6eeabe69ca92..6a2fe7e9dad6a35c2ec335619affa899e6319537 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sudo 1.8.8\n"
 "Report-Msgid-Bugs-To: http://www.sudo.ws/bugs\n"
-"POT-Creation-Date: 2013-09-03 14:44-0600\n"
+"POT-Creation-Date: 2013-09-03 14:48-0600\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1499,12 +1499,12 @@ msgstr ""
 
 #: plugins/sudoers/timestamp.c:405
 #, c-format
-msgid "unable to remove %s, will reset to the epoch"
+msgid "unable to remove %s, will reset to the Unix epoch"
 msgstr ""
 
-#: plugins/sudoers/timestamp.c:412
+#: plugins/sudoers/timestamp.c:413
 #, c-format
-msgid "unable to reset %s to the epoch"
+msgid "unable to reset %s to the Unix epoch"
 msgstr ""
 
 #: plugins/sudoers/toke_util.c:176
index 25044e1f1b71f1459299c3faf777b22e52c5426f..7f39548837f4f419d9dc3b1a5b697e7a7e27e824 100644 (file)
@@ -402,14 +402,15 @@ remove_timestamp(bool remove)
                status = rmdir(timestampdir);
            if (status == -1 && errno != ENOENT) {
                log_warning(0,
-                   N_("unable to remove %s, will reset to the epoch"), path);
+                   N_("unable to remove %s, will reset to the Unix epoch"),
+                   path);
                remove = false;
            }
        }
        if (!remove) {
            timevalclear(&tv);
            if (touch(-1, path, &tv) == -1 && errno != ENOENT)
-               fatal(_("unable to reset %s to the epoch"), path);
+               fatal(_("unable to reset %s to the Unix epoch"), path);
        }
     }