projects
/
fwknop.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
4832312
)
minor comment update
author
Michael Rash
<mbr@cipherdyne.org>
Fri, 31 Aug 2012 01:43:07 +0000 (21:43 -0400)
committer
Michael Rash
<mbr@cipherdyne.org>
Fri, 31 Aug 2012 01:43:07 +0000 (21:43 -0400)
server/utils.c
patch
|
blob
|
history
diff --git
a/server/utils.c
b/server/utils.c
index
a25bdcf
..
4463607
100644
(file)
--- a/
server/utils.c
+++ b/
server/utils.c
@@
-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);
}
@@
-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);
}