-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Passing argument from incompatible pointer type
Reported to Debian Bug Tracking System (BTS): https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075012 globus_ftp_telnet_client.c:100:58: error: passing argument 5 of ‘globus_xio_readv’ from incompatible pointer type [-Wincompatible-pointer-types] 100 | res = globus_xio_readv(xio_handle, &readv, 1, 1, &len, NULL); | ^~~~ | | | int * In file included from globus_ftp_telnet_client.c:17: /usr/include/globus/globus_xio.h:776:41: note: expected ‘globus_size_t *’ {aka ‘long unsigned int *’} but argument is of type ‘int *’ 776 | globus_size_t * nbytes, | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~ make[3]: *** [Makefile:408: globus_ftp_telnet_client.o] Error 1
- Loading branch information
Showing
4 changed files
with
12 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
packaging/debian/globus-gridftp-server-control/debian/changelog.in
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
@@ -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 | ||
|
||
|