Lines Matching refs:timebuf

461 	char rev[CVS_REV_BUFSZ], timebuf[CVS_TIME_BUFSZ], sticky[CVS_REV_BUFSZ];  in cvs_client_sendfile()  local
475 len = strlcpy(timebuf, "Initial ", sizeof(timebuf)); in cvs_client_sendfile()
476 if (len >= sizeof(timebuf)) in cvs_client_sendfile()
479 len = strlcat(timebuf, cf->file_name, sizeof(timebuf)); in cvs_client_sendfile()
480 if (len >= sizeof(timebuf)) in cvs_client_sendfile()
484 ctime_r(&cf->file_ent->ce_mtime, timebuf); in cvs_client_sendfile()
488 timebuf[strcspn(timebuf, "\n")] = '\0'; in cvs_client_sendfile()
490 len = strlcpy(timebuf, cf->file_ent->ce_conflict, in cvs_client_sendfile()
491 sizeof(timebuf)); in cvs_client_sendfile()
492 if (len >= sizeof(timebuf)) in cvs_client_sendfile()
494 len = strlcat(timebuf, "+=", sizeof(timebuf)); in cvs_client_sendfile()
495 if (len >= sizeof(timebuf)) in cvs_client_sendfile()
511 rev, timebuf, cf->file_ent->ce_opts ? in cvs_client_sendfile()
535 cf->file_name, "", rev, timebuf, in cvs_client_sendfile()
631 char sticky[CVS_ENT_MAXLINELEN], timebuf[CVS_TIME_BUFSZ]; in cvs_client_checkedin() local
653 len = strlcpy(timebuf, "Initial ", sizeof(timebuf)); in cvs_client_checkedin()
654 if (len >= sizeof(timebuf)) in cvs_client_checkedin()
657 len = strlcat(timebuf, newent->ce_name, sizeof(timebuf)); in cvs_client_checkedin()
658 if (len >= sizeof(timebuf)) in cvs_client_checkedin()
662 asctime_r(&datetm, timebuf); in cvs_client_checkedin()
663 timebuf[strcspn(timebuf, "\n")] = '\0'; in cvs_client_checkedin()
678 cvs_ent_line_str(newent->ce_name, rev, timebuf, in cvs_client_checkedin()
702 char timebuf[CVS_TIME_BUFSZ], revbuf[CVS_REV_BUFSZ]; in cvs_client_updated() local
739 asctime_r(&datetm, timebuf); in cvs_client_updated()
740 timebuf[strcspn(timebuf, "\n")] = '\0'; in cvs_client_updated()
757 cvs_ent_line_str(e->ce_name, revbuf, timebuf, in cvs_client_updated()
803 char timebuf[CVS_TIME_BUFSZ], *repo, *rpath, *entry, *mode; in cvs_client_merged() local
842 asctime_r(&datetm, timebuf); in cvs_client_merged()
843 timebuf[strcspn(timebuf, "\n")] = '\0'; in cvs_client_merged()
1035 char rpath[PATH_MAX], timebuf[CVS_TIME_BUFSZ], *s; in cvs_client_initlog() local
1070 ctime_r(&now, timebuf); in cvs_client_initlog()
1071 timebuf[strcspn(timebuf, "\n")] = '\0'; in cvs_client_initlog()
1072 if (strlcpy(fpath, timebuf, sizeof(fpath)) >= in cvs_client_initlog()