Skip to content

Commit

Permalink
welcome: Fix sending parameters to welcome script.
Browse files Browse the repository at this point in the history
Broken by f38b0da
  • Loading branch information
sirainen authored and villesavolainen committed Jun 13, 2017
1 parent 53a377b commit f5870a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/welcome/welcome-plugin.c
Expand Up @@ -60,7 +60,7 @@ static void script_execute(struct mail_user *user, const char *cmd, bool wait)
str_append(str, "-\n");
for (; *args != NULL; args++) {
str_append_tabescaped(str, *args);
str_append_c(str, '\t');
str_append_c(str, '\n');
}
str_append_c(str, '\n');

Expand Down

0 comments on commit f5870a0

Please sign in to comment.