From: Ray Strode Date: Sat, 20 Oct 2007 23:18:49 +0000 (-0400) Subject: fix typo in function name X-Git-Tag: 0.1.0~143^2~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=31e5f9d12dbdb7c92b09af8d84c0dfdb0a20618a;p=thirdparty%2Fplymouth.git fix typo in function name --- diff --git a/src/libply/ply-utils.c b/src/libply/ply-utils.c index bf94ba3f..33337a9e 100644 --- a/src/libply/ply-utils.c +++ b/src/libply/ply-utils.c @@ -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);