mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 07:48:50 -05:00
removed the extra line feed appended by asctime()
This commit is contained in:
parent
1e522d5baa
commit
246f9f24a2
@ -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) */
|
/* make an install date (in UTC) */
|
||||||
STRNCPY(info->installdate, asctime(gmtime(&t)), sizeof(info->installdate));
|
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);
|
_alpm_log(PM_LOG_FLOW2, "adding database entry %s", info->name);
|
||||||
if(db_write(db, info, INFRQ_ALL)) {
|
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);
|
_alpm_log(PM_LOG_ERROR, "could not update database entry %s/%s-%s", db->treename, info->name, info->version);
|
||||||
|
Loading…
Reference in New Issue
Block a user