- update to rpm-4.8.0
* updated python bindings * new transaction ordering code OBS-URL: https://build.opensuse.org/package/show/Base:System/rpm?expand=0&rev=40
This commit is contained in:
16
modemuncher.diff
Normal file
16
modemuncher.diff
Normal file
@@ -0,0 +1,16 @@
|
||||
--- luaext/modemuncher.c.orig 2010-03-26 09:43:45.000000000 +0000
|
||||
+++ luaext/modemuncher.c 2010-03-26 09:44:54.000000000 +0000
|
||||
@@ -245,11 +245,11 @@ printf("modemuncher: doneflag = %u\n", d
|
||||
if (ch_mode) switch (op)
|
||||
{
|
||||
case '+':
|
||||
- *mode = *mode |= ch_mode & affected_bits;
|
||||
+ *mode |= ch_mode & affected_bits;
|
||||
break;
|
||||
|
||||
case '-':
|
||||
- *mode = *mode &= ~(ch_mode & affected_bits);
|
||||
+ *mode &= ~(ch_mode & affected_bits);
|
||||
break;
|
||||
|
||||
case '=':
|
Reference in New Issue
Block a user