From 019f643c693b4c6de3da78159d8c4507b924d93a Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 19 Oct 2011 14:52:41 -0700 Subject: Fix a boatload of warnings in the examples. Autobuild-User: Jeremy Allison Autobuild-Date: Thu Oct 20 02:29:52 CEST 2011 on sn-devel-104 --- examples/libsmbclient/teststat2.c | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) (limited to 'examples/libsmbclient/teststat2.c') diff --git a/examples/libsmbclient/teststat2.c b/examples/libsmbclient/teststat2.c index b5e6b437c5..fcd3e30935 100644 --- a/examples/libsmbclient/teststat2.c +++ b/examples/libsmbclient/teststat2.c @@ -34,11 +34,10 @@ int main(int argc, char* argv[]) static int gettime(const char * pUrl, const char * pLocalPath) { - //char *pSmbPath = 0; struct stat st; - char mtime[32]; - char ctime[32]; - char atime[32]; + char m_time[32]; + char c_time[32]; + char a_time[32]; smbc_init(get_auth_data_fn, 0); @@ -49,12 +48,12 @@ static int gettime(const char * pUrl, } printf("SAMBA\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)); - // check the stat on this file + /* check the stat on this file */ if (stat(pLocalPath, &st) < 0) { perror("stat"); @@ -62,11 +61,10 @@ static int gettime(const char * pUrl, } 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; } - -- cgit