* gpgmeplug.c (reorder_dn): Added missing stdpart list terminator.
BTW, why did you change the sequence of the parts. According to the specs there is no standard but our implementation has to make sure that it uses the same sequence everywhere. Adding the extra parts is useless because they are not defined in rfc2253 and thus can't occur.
This commit is contained in:
parent
e6dc9fd6c4
commit
5e13668340
@ -1,3 +1,7 @@
|
|||||||
|
2002-06-20 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
|
* gpgmeplug.c (reorder_dn): Added missing stdpart list terminator.
|
||||||
|
|
||||||
2002-05-30 Steffen Hansen <steffen@hrhansen.dk>
|
2002-05-30 Steffen Hansen <steffen@hrhansen.dk>
|
||||||
|
|
||||||
* cryptplug.h, gpgmeplug.c: Added certificate info listing functions.
|
* cryptplug.h, gpgmeplug.c: Added certificate info listing functions.
|
||||||
@ -7,7 +11,7 @@
|
|||||||
2002-03-23 Werner Koch <wk@gnupg.org>
|
2002-03-23 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
* gpgmeplug.c: Converted it to real C; i.e. use standard comments -
|
* gpgmeplug.c: Converted it to real C; i.e. use standard comments -
|
||||||
we are doing ISO C 90. Transalted a few German remarks and
|
we are doing ISO C 90. Translated a few German remarks and
|
||||||
commented on some things.
|
commented on some things.
|
||||||
|
|
||||||
2002-03-08 Steffen Hansen <steffen@hrhansen.dk>
|
2002-03-08 Steffen Hansen <steffen@hrhansen.dk>
|
||||||
|
@ -2088,7 +2088,8 @@ static char* reorder_dn( struct DnPair *dn )
|
|||||||
"L", "PC", "SP", "ST",
|
"L", "PC", "SP", "ST",
|
||||||
"OU",
|
"OU",
|
||||||
"O",
|
"O",
|
||||||
"C"
|
"C",
|
||||||
|
NULL
|
||||||
};
|
};
|
||||||
int any=0, any2=0, len=0, i;
|
int any=0, any2=0, len=0, i;
|
||||||
char* result;
|
char* result;
|
||||||
|
Loading…
Reference in New Issue
Block a user