Skip to content

Commit

Permalink
minor comment update
Browse files Browse the repository at this point in the history
  • Loading branch information
mrash committed Aug 31, 2012
1 parent 4832312 commit 406e33c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/utils.c
Expand Up @@ -154,7 +154,7 @@ is_valid_dir(const char *path)
*/
if(stat(path, &st) != 0)
{
fprintf(stderr, "[-] unable to run stat() directory: %s: %s\n",
fprintf(stderr, "[-] unable to stat() directory: %s: %s\n",
path, strerror(errno));
exit(EXIT_FAILURE);
}
Expand Down Expand Up @@ -192,7 +192,7 @@ verify_file_perms_ownership(const char *file)
*/
if((stat(file, &st)) != 0)
{
fprintf(stderr, "[-] unable to run stat() against file: %s: %s\n",
fprintf(stderr, "[-] unable to stat() file: %s: %s\n",
file, strerror(errno));
exit(EXIT_FAILURE);
}
Expand Down

0 comments on commit 406e33c

Please sign in to comment.