Skip to content

Commit

Permalink
lib-sieve: file storage: Fixed indent in sieve_storage_get_relative_l…
Browse files Browse the repository at this point in the history
…ink_path().

Apparently, this causes GCC warnings.
  • Loading branch information
stephanbosch committed Nov 13, 2016
1 parent 676476f commit aa835eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib-sieve/storage/file/sieve-file-storage.c
Expand Up @@ -119,8 +119,8 @@ static const char *sieve_storage_get_relative_link_path
/* Add trailing '/' when link path is not empty
*/
pathlen = strlen(link_path);
if ( pathlen != 0 && link_path[pathlen-1] != '/')
return t_strconcat(link_path, "/", NULL);
if ( pathlen != 0 && link_path[pathlen-1] != '/')
return t_strconcat(link_path, "/", NULL);

return t_strdup(link_path);
}
Expand Down

0 comments on commit aa835eb

Please sign in to comment.