]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
fix typo in function name
authorRay Strode <rstrode@redhat.com>
Sat, 20 Oct 2007 23:18:49 +0000 (19:18 -0400)
committerRay Strode <rstrode@redhat.com>
Sat, 20 Oct 2007 23:18:49 +0000 (19:18 -0400)
src/libply/ply-utils.c

index bf94ba3fc325c7e3ac3d6477e36e4ba567d46ce6..33337a9e884958a5c8d879fe3ccc339fcc5c1142 100644 (file)
@@ -806,9 +806,9 @@ out:
 }
 
 static bool
-ply_copy_file_in_direcetory (const char *filename,
-                             const char *parent,
-                             const char *destination)
+ply_copy_file_in_directory (const char *filename,
+                            const char *parent,
+                            const char *destination)
 {
   char *source, *target;
 
@@ -874,7 +874,7 @@ ply_copy_directory (const char *source,
         }
       else if (ply_file_exists (full_path))
         {
-          if (!ply_copy_file_in_direcetory (entry->d_name, source, destination))
+          if (!ply_copy_file_in_directory (entry->d_name, source, destination))
             {
               ply_save_errno ();
               free (full_path);