Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Passing argument from incompatible pointer type #226

Merged
merged 1 commit into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gridftp/server-lib/src/configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AC_PREREQ([2.60])

AC_INIT([globus_gridftp_server_control],[9.4],[https://github.com/gridcf/gct/issues])
AC_INIT([globus_gridftp_server_control],[9.5],[https://github.com/gridcf/gct/issues])
AC_CONFIG_MACRO_DIR([m4])
AC_SUBST([MAJOR_VERSION], [${PACKAGE_VERSION%%.*}])
AC_SUBST([MINOR_VERSION], [${PACKAGE_VERSION##*.}])
Expand Down
2 changes: 1 addition & 1 deletion gridftp/server-lib/src/test/globus_ftp_telnet_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ main(
globus_bool_t done = GLOBUS_FALSE;
globus_size_t nbytes;
globus_xio_attr_t attr;
int len;
globus_size_t len;
globus_xio_iovec_t readv;

if(argc < 2)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
globus-gridftp-server-control (9.5-1+gct.@distro@) @distro@; urgency=medium

* Passing argument from incompatible pointer type

-- Mattias Ellert <[email protected]> Thu, 11 Jul 2024 13:19:25 +0200

globus-gridftp-server-control (9.4-1+gct.@distro@) @distro@; urgency=medium

* Handle 64 bit time_t on 32 bit systems
Expand Down
5 changes: 4 additions & 1 deletion packaging/fedora/globus-gridftp-server-control.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Name: globus-gridftp-server-control
%global soname 0
%global _name %(echo %{name} | tr - _)
Version: 9.4
Version: 9.5
Release: 1%{?dist}
Summary: Grid Community Toolkit - Globus GridFTP Server Library

Expand Down Expand Up @@ -112,6 +112,9 @@ rm $RPM_BUILD_ROOT%{_libdir}/*.la
%{_libdir}/pkgconfig/%{name}.pc

%changelog
* Thu Jul 11 2024 Mattias Ellert <[email protected]> - 9.5-1
- Passing argument from incompatible pointer type

* Sat Mar 16 2024 Mattias Ellert <[email protected]> - 9.4-1
- Handle 64 bit time_t on 32 bit systems

Expand Down
Loading