Commit ec55b4f2 authored by Wayne Davison's avatar Wayne Davison

Changed the indent for one else ... if section.

parent 798cde47
...@@ -515,8 +515,7 @@ static void log_formatted(enum logcode code, char *format, char *op, ...@@ -515,8 +515,7 @@ static void log_formatted(enum logcode code, char *format, char *op,
strlcpy(n, buf2, MAXPATHLEN); strlcpy(n, buf2, MAXPATHLEN);
else else
n = buf2; n = buf2;
} else { } else if (*n != '/') {
if (*n != '/') {
pathjoin(buf2, sizeof buf2, pathjoin(buf2, sizeof buf2,
curr_dir + module_dirlen, n); curr_dir + module_dirlen, n);
clean_fname(buf2, 0); clean_fname(buf2, 0);
...@@ -526,7 +525,6 @@ static void log_formatted(enum logcode code, char *format, char *op, ...@@ -526,7 +525,6 @@ static void log_formatted(enum logcode code, char *format, char *op,
n = buf2; n = buf2;
} else } else
clean_fname(n, 0); clean_fname(n, 0);
}
if (*n == '/') if (*n == '/')
n++; n++;
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment