diff --git a/src/managesieve/cmd-renamescript.c b/src/managesieve/cmd-renamescript.c index 1aeecdb86b11c1100d9cf4dfa4778ea6cffd5914..a748acf2c4df15623cb94c2b2c0fbe36de4fa1e3 100644 --- a/src/managesieve/cmd-renamescript.c +++ b/src/managesieve/cmd-renamescript.c @@ -22,8 +22,7 @@ bool cmd_renamescript(struct client_command_context *cmd) if (!client_read_string_args(cmd, TRUE, 2, &scriptname, &newname)) return FALSE; - script = sieve_storage_open_script - (storage, scriptname, NULL); + script = sieve_storage_open_script(storage, scriptname, NULL); if (script == NULL) { client_send_storage_error(client, storage); return TRUE;