diff options
Diffstat (limited to 'scd')
-rw-r--r-- | scd/ChangeLog | 4 | ||||
-rw-r--r-- | scd/scdaemon.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/scd/ChangeLog b/scd/ChangeLog index e582ae5b4..4b6575679 100644 --- a/scd/ChangeLog +++ b/scd/ChangeLog @@ -1,3 +1,7 @@ +2008-12-09 Werner Koch <[email protected]> + + * scdaemon.c (main): Call i18n_init before init_common_subsystems. + 2008-12-08 Werner Koch <[email protected]> * scdaemon.c (handle_connections): Sync ticker to the next full diff --git a/scd/scdaemon.c b/scd/scdaemon.c index 5f3078c19..a094ae36b 100644 --- a/scd/scdaemon.c +++ b/scd/scdaemon.c @@ -364,9 +364,9 @@ main (int argc, char **argv ) log_set_prefix ("scdaemon", 1|4); /* Make sure that our subsystems are ready. */ + i18n_init (); init_common_subsystems (); - i18n_init (); /* Libgcrypt requires us to register the threading model first. Note that this will also do the pth_init. */ |