diff options
| -rw-r--r-- | gpgmeplug/ChangeLog | 6 | ||||
| -rw-r--r-- | gpgmeplug/gpgmeplug.c | 3 | 
2 files changed, 7 insertions, 2 deletions
| diff --git a/gpgmeplug/ChangeLog b/gpgmeplug/ChangeLog index b7627a17..31c6ef7f 100644 --- a/gpgmeplug/ChangeLog +++ b/gpgmeplug/ChangeLog @@ -1,3 +1,7 @@ +2002-06-20  Werner Koch  <[email protected]> + +	* gpgmeplug.c (reorder_dn): Added missing stdpart list terminator. +  2002-05-30  Steffen Hansen  <[email protected]>  	* cryptplug.h, gpgmeplug.c: Added certificate info listing functions.  @@ -7,7 +11,7 @@  2002-03-23  Werner Koch  <[email protected]>  	* 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.  2002-03-08  Steffen Hansen  <[email protected]> diff --git a/gpgmeplug/gpgmeplug.c b/gpgmeplug/gpgmeplug.c index 39471cc3..d5d827be 100644 --- a/gpgmeplug/gpgmeplug.c +++ b/gpgmeplug/gpgmeplug.c @@ -2088,7 +2088,8 @@ static char* reorder_dn( struct DnPair *dn )      "L",  "PC", "SP", "ST",      "OU",      "O", -    "C" +    "C", +    NULL    };    int any=0, any2=0, len=0, i;    char* result; | 
