summaryrefslogtreecommitdiffstats
path: root/examples/libsmbclient/teststat.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2011-10-19 14:52:41 -0700
committerJeremy Allison <jra@samba.org>2011-10-20 02:29:52 +0200
commit019f643c693b4c6de3da78159d8c4507b924d93a (patch)
tree7c12b78713983167251b4fdf181bed538537c5b7 /examples/libsmbclient/teststat.c
parentf64f91f96f71271186b3e171d24f0d0137620cba (diff)
downloadsamba-019f643c693b4c6de3da78159d8c4507b924d93a.tar.gz
samba-019f643c693b4c6de3da78159d8c4507b924d93a.tar.xz
samba-019f643c693b4c6de3da78159d8c4507b924d93a.zip
Fix a boatload of warnings in the examples.
Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Thu Oct 20 02:29:52 CEST 2011 on sn-devel-104
Diffstat (limited to 'examples/libsmbclient/teststat.c')
-rw-r--r--examples/libsmbclient/teststat.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/examples/libsmbclient/teststat.c b/examples/libsmbclient/teststat.c
index 86c69e4e2cd..f36639eab7b 100644
--- a/examples/libsmbclient/teststat.c
+++ b/examples/libsmbclient/teststat.c
@@ -9,12 +9,11 @@
int main(int argc, char * argv[])
{
int debug = 0;
- char buffer[16384];
- char mtime[32];
- char ctime[32];
- char atime[32];
- char * pSmbPath = NULL;
- char * pLocalPath = NULL;
+ char m_time[32];
+ char c_time[32];
+ char a_time[32];
+ const char * pSmbPath = NULL;
+ const char * pLocalPath = NULL;
struct stat st;
if (argc == 1)
@@ -49,9 +48,9 @@ int main(int argc, char * argv[])
}
printf("\nSAMBA\n mtime:%lu/%s ctime:%lu/%s atime:%lu/%s\n",
- st.st_mtime, ctime_r(&st.st_mtime, mtime),
- st.st_ctime, ctime_r(&st.st_ctime, ctime),
- st.st_atime, ctime_r(&st.st_atime, atime));
+ st.st_mtime, ctime_r(&st.st_mtime, m_time),
+ st.st_ctime, ctime_r(&st.st_ctime, c_time),
+ st.st_atime, ctime_r(&st.st_atime, a_time));
if (pLocalPath != NULL)
{
@@ -62,9 +61,9 @@ int main(int argc, char * argv[])
}
printf("LOCAL\n mtime:%lu/%s ctime:%lu/%s atime:%lu/%s\n",
- st.st_mtime, ctime_r(&st.st_mtime, mtime),
- st.st_ctime, ctime_r(&st.st_ctime, ctime),
- st.st_atime, ctime_r(&st.st_atime, atime));
+ st.st_mtime, ctime_r(&st.st_mtime, m_time),
+ st.st_ctime, ctime_r(&st.st_ctime, c_time),
+ st.st_atime, ctime_r(&st.st_atime, a_time));
}
return 0;