Renamed resource -> resource_override

This commit is contained in:
James Booth
2015-01-10 18:17:10 +00:00
parent f180925c3b
commit 3e1832b02e
5 changed files with 10 additions and 10 deletions

View File

@@ -1617,11 +1617,11 @@ cmd_resource(gchar **args, struct cmd_help_t help)
return TRUE;
}
chatwin->resource = strdup(resource);
chatwin->resource_override = strdup(resource);
return TRUE;
} else if (g_strcmp0(cmd, "off") == 0) {
FREE_SET_NULL(chatwin->resource);
FREE_SET_NULL(chatwin->resource_override);
return TRUE;
} else {
cons_show("Usage: %s", help.usage);