Fixed printing

This commit is contained in:
Moritz Lipp 2010-08-01 13:40:04 +02:00
parent 9b31d203c4
commit 8bbc184fd0

View file

@ -3324,7 +3324,7 @@ cmd_print(int argc, char** argv)
}
char* escaped_filename = g_shell_quote(Zathura.PDF.file);
char* escaped_addit = g_shell_quote(addit->str);
char* escaped_addit = addit->len ? g_shell_quote(addit->str) : g_strdup("");
char* command = g_strdup_printf(print_command, printer, sites, escaped_addit, escaped_filename);
system(command);