mirror of
https://github.com/systemd/systemd.git
synced 2025-09-10 22:52:49 +02:00
* flag-set.cocci: perform the transformation only if the second
argument is a constant
* sd-journal/lookup3.c: skip the cocci completely for this file, since
it's not "ours"
* strjoina.cocci: skip the transformation on the "test_strjoina" test,
since it intentionally tests the "incorrect" expression we're trying to
transform (the same thing was already done in strjoin.cocci)
8 lines
168 B
Plaintext
8 lines
168 B
Plaintext
@@
|
|
position p : script:python() { p[0].current_element != "test_strjoina" };
|
|
expression n, m;
|
|
expression list s;
|
|
@@
|
|
- n = strjoina@p(m, s, NULL);
|
|
+ n = strjoina(m, s);
|