* update option parsing (don't need 'ascending' anymore)

This commit is contained in:
Dirk-Jan C. Binnema 2010-01-02 16:07:07 +02:00
parent 308160d418
commit e0de3a97e4
1 changed files with 6 additions and 0 deletions

View File

@ -134,6 +134,12 @@ mu_config_set_defaults (MuConfigOptions *opts)
opts->fields = "d f s";
opts->sortfield = "d";
}
if (opts->linksdir) {
gchar *old = opts->linksdir;
opts->linksdir = mu_util_dir_expand (opts->linksdir);
g_free(old);
}
}