examples: A tiny bit of README.Coding for teststat.c
authorVolker Lendecke <vl@samba.org>
Wed, 17 Aug 2022 09:40:11 +0000 (11:40 +0200)
committerJeremy Allison <jra@samba.org>
Fri, 26 Aug 2022 18:54:37 +0000 (18:54 +0000)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
examples/libsmbclient/teststat.c

index c75ce8c01a3aaf1f4b06ea141d026f0e3daba4b5..593609bd9cffd5345becb9e39a420d5277ba660b 100644 (file)
@@ -15,34 +15,30 @@ int main(int argc, char * argv[])
        const char *          pSmbPath = NULL;
        const char *          pLocalPath = NULL;
        struct stat     st;
+       int ret;
 
-       if (argc == 1)
-       {
+       if (argc == 1) {
                pSmbPath = "smb://RANDOM/Public/small";
                pLocalPath = "/random/home/samba/small";
        }
-       else if (argc == 2)
-       {
+       else if (argc == 2) {
                pSmbPath = argv[1];
                pLocalPath = NULL;
        }
-       else if (argc == 3)
-       {
+       else if (argc == 3) {
                pSmbPath = argv[1];
                pLocalPath = argv[2];
-       }
-       else
-       {
-               printf("usage: "
-                      "%s [ smb://path/to/file [ /nfs/or/local/path/to/file ] ]\n",
+       } else {
+               printf("usage: %s [ smb://path/to/file "
+                      "[ /nfs/or/local/path/to/file ] ]\n",
                       argv[0]);
                return 1;
        }
 
        smbc_init(get_auth_data_fn, debug);
 
-       if (smbc_stat(pSmbPath, &st) < 0)
-       {
+       ret = smbc_stat(pSmbPath, &st);
+       if (ret < 0) {
                perror("smbc_stat");
                return 1;
        }
@@ -52,10 +48,9 @@ int main(int argc, char * argv[])
               (long long)st.st_ctime, ctime_r(&st.st_ctime, c_time),
               (long long)st.st_atime, ctime_r(&st.st_atime, a_time));
 
-       if (pLocalPath != NULL)
-       {
-               if (stat(pLocalPath, &st) < 0)
-               {
+       if (pLocalPath != NULL) {
+               ret = stat(pLocalPath, &st);
+               if (ret < 0) {
                        perror("stat");
                        return 1;
                }