change format for expantion variables in default_cc_name to
%{variable} to not confuse them with shell ditto git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15272 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -272,12 +272,12 @@ struct {
|
|||||||
char *res;
|
char *res;
|
||||||
} cc_names[] = {
|
} cc_names[] = {
|
||||||
{ "foo", 0, "foo" },
|
{ "foo", 0, "foo" },
|
||||||
{ "${uid}", 0 },
|
{ "%{uid}", 0 },
|
||||||
{ "foo${null}", 0, "foo" },
|
{ "foo%{null}", 0, "foo" },
|
||||||
{ "foo${null}bar", 0, "foobar" },
|
{ "foo%{null}bar", 0, "foobar" },
|
||||||
{ "${", 1 },
|
{ "%{", 1 },
|
||||||
{ "${foo ${", 1 },
|
{ "%{foo %{", 1 },
|
||||||
{ "${{", 1 },
|
{ "%{{", 1 },
|
||||||
};
|
};
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
Reference in New Issue
Block a user