diff options
author | Aurelien Foret <aurelien@archlinux.org> | 2005-05-02 06:29:59 +0000 |
---|---|---|
committer | Aurelien Foret <aurelien@archlinux.org> | 2005-05-02 06:29:59 +0000 |
commit | 246f9f24a2a2b0ae9f00e6a8e51bc2f7fce3d3b5 (patch) | |
tree | b9696f08ebdd5be2e40bb503fb820fb4d3b3f2a0 /lib/libalpm/add.c | |
parent | 1e522d5baaf93b15dc9c0c88b2430eac3540a95c (diff) | |
download | pacman-246f9f24a2a2b0ae9f00e6a8e51bc2f7fce3d3b5.tar.xz |
removed the extra line feed appended by asctime()
Diffstat (limited to 'lib/libalpm/add.c')
-rw-r--r-- | lib/libalpm/add.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libalpm/add.c b/lib/libalpm/add.c index 0d109e4d..4290e9fc 100644 --- a/lib/libalpm/add.c +++ b/lib/libalpm/add.c @@ -393,9 +393,12 @@ int add_commit(pmtrans_t *trans, pmdb_t *db) } } - _alpm_log(PM_LOG_FLOW1, "updating database"); /* make an install date (in UTC) */ STRNCPY(info->installdate, asctime(gmtime(&t)), sizeof(info->installdate)); + /* remove the extra line feed appended by asctime() */ + info->installdate[strlen(info->installdate)-1] = 0; + + _alpm_log(PM_LOG_FLOW1, "updating database"); _alpm_log(PM_LOG_FLOW2, "adding database entry %s", info->name); if(db_write(db, info, INFRQ_ALL)) { _alpm_log(PM_LOG_ERROR, "could not update database entry %s/%s-%s", db->treename, info->name, info->version); |