projects
/
project
/
luci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
44bf3f0
)
changed stat to lstat in nixio_lstat function
798/head
author
Thorsten M
<thoto@thoto.net>
Fri, 16 Sep 2016 09:06:12 +0000
(11:06 +0200)
committer
Thorsten M
<thoto@thoto.net>
Fri, 16 Sep 2016 09:06:12 +0000
(11:06 +0200)
Signed-off-by: Thorsten M. <thoto@devtal.de>
libs/luci-lib-nixio/src/fs.c
patch
|
blob
|
history
diff --git
a/libs/luci-lib-nixio/src/fs.c
b/libs/luci-lib-nixio/src/fs.c
index 12ca111ac0eb8949667690e9ce520b8bd3109c08..ba184ed1192cf284f818a64b0acc60ce1f9e5ad6 100644
(file)
--- a/
libs/luci-lib-nixio/src/fs.c
+++ b/
libs/luci-lib-nixio/src/fs.c
@@
-355,7
+355,7
@@
static int nixio_stat(lua_State *L) {
static int nixio_lstat(lua_State *L) {
nixio_stat_t buf;
- if (stat(luaL_checkstring(L, 1), &buf)) {
+ if (
l
stat(luaL_checkstring(L, 1), &buf)) {
return nixio__perror(L);
} else {
nixio__push_stat(L, &buf);