From 8bf3b94ac38682b4e5f1553ce0a501873dbcb855 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 12 Oct 2023 15:19:36 +0200 Subject: implement fstat --- rpminfo.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'rpminfo.c') diff --git a/rpminfo.c b/rpminfo.c index 88868d5..16229d6 100644 --- a/rpminfo.c +++ b/rpminfo.c @@ -608,6 +608,15 @@ static int php_rpm_ops_close(php_stream *stream, int close_handle) return EOF; } +static int php_zip_ops_stat(php_stream *stream, php_stream_statbuf *ssb) +{ + STREAM_DATA_FROM_STREAM(); + + if (self) { + return rpmfiStat(self->fi, 0, &ssb->sb); + } + return -1; +} const php_stream_ops php_stream_rpmio_ops = { NULL, /* write */ @@ -617,7 +626,7 @@ const php_stream_ops php_stream_rpmio_ops = { "rpm", NULL, /* seek */ NULL, /* cast */ - NULL, /* stat */ + php_zip_ops_stat, NULL /* set_option */ }; -- cgit