Skip to content

Commit 336ee63

Browse files
committed
modules/dav/main/mod_dav.c: code style fixes
ref: apache#556 (review) Signed-off-by: Leo <i@hardrain980.com>
1 parent 80bb23d commit 336ee63

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

modules/dav/main/mod_dav.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1280,7 +1280,8 @@ static int dav_method_put(request_rec *r)
12801280
err3 = (*resource->hooks->set_mtime)(resource, mtime);
12811281
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(10519)
12821282
"Setting mtime for file.");
1283-
} else {
1283+
}
1284+
else {
12841285
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(10520)
12851286
"Unable to set mtime: provider does not support \"set_mtime\".");
12861287
}
@@ -2944,7 +2945,8 @@ static int dav_method_mkcol(request_rec *r)
29442945
err = (resource->hooks->set_mtime)(resource, mtime);
29452946
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO()
29462947
"Setting mtime for file.");
2947-
} else {
2948+
}
2949+
else {
29482950
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO()
29492951
"Unable to set mtime: provider does not support \"set_mtime\".");
29502952
}

0 commit comments

Comments
 (0)