Add missing double quote
This commit is contained in:
parent
ed817e6830
commit
397b41add9
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2001-03-27 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* remote-rdp.c (rdp_set_command_line): Add missing double quote.
|
||||||
|
|
||||||
2001-03-27 Kevin Buettner <kevinb@redhat.com>
|
2001-03-27 Kevin Buettner <kevinb@redhat.com>
|
||||||
|
|
||||||
* solib-aix5.c (build_so_lib_from_mapfile): Use xfree() instead
|
* solib-aix5.c (build_so_lib_from_mapfile): Use xfree() instead
|
||||||
|
|
|
@ -699,7 +699,7 @@ rdp_set_command_line (char *command, char *args)
|
||||||
if (commandline != NULL)
|
if (commandline != NULL)
|
||||||
xfree (commandline);
|
xfree (commandline);
|
||||||
|
|
||||||
xasprintf (&commandline, %s %s", command, args);
|
xasprintf (&commandline, "%s %s", command, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue