]> sourceware.org Git - systemtap.git/commitdiff
Fix two more 'temporary' typos
authorLukas Berk <lberk@redhat.com>
Mon, 7 Feb 2011 18:19:26 +0000 (13:19 -0500)
committerLukas Berk <lberk@redhat.com>
Mon, 7 Feb 2011 18:19:26 +0000 (13:19 -0500)
main.cxx

index 6cb291b4e2184aeb4a41dd92060dac08ba9a295d..14df630c1a7b890546b6f6093982d3f5d9d7b9ff 100644 (file)
--- a/main.cxx
+++ b/main.cxx
@@ -384,7 +384,7 @@ create_temp_dir (systemtap_session &s)
     {
       const char* e = strerror (errno);
       //we can't make the directory due to the error
-      cerr << autosprintf(_("ERROR: cannot create termporary directory (\" %s \"): %s"), tmpdirt.c_str(), e) << endl;
+      cerr << autosprintf(_("ERROR: cannot create temporary directory (\" %s \"): %s"), tmpdirt.c_str(), e) << endl;
       //cerr << "ERROR: cannot create temporary directory (\"" << tmpdirt << "\"): " << e << endl;
       exit (1); // die
     }
@@ -392,7 +392,7 @@ create_temp_dir (systemtap_session &s)
     s.tmpdir = tmpdir_name;
 
   if (s.verbose>1)
-    clog << autosprintf(_("Created termorary directory \" %s \""), s.tmpdir.c_str()) << endl;
+    clog << autosprintf(_("Created temporary directory \" %s \""), s.tmpdir.c_str()) << endl;
     //clog << "Created temporary directory \"" << s.tmpdir << "\"" << endl;
 }
 
This page took 0.033494 seconds and 5 git commands to generate.