mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 13:50:38 -04:00
post-patch target altogether - Remove seemingly useless include of <bsd.port.options.mk> while here
38 lines
1 KiB
C
38 lines
1 KiB
C
--- lib/charset-conv.c.orig 2008-03-04 12:18:03 UTC
|
|
+++ lib/charset-conv.c
|
|
@@ -230,7 +230,7 @@ gftp_filename_from_utf8 (gftp_request *
|
|
#else
|
|
|
|
char *
|
|
-gftp_string_to_utf8 (gftp_request * request, const char *str, size_t dest_len)
|
|
+gftp_string_to_utf8 (gftp_request * request, const char *str, size_t *dest_len)
|
|
{
|
|
return (NULL);
|
|
}
|
|
@@ -238,22 +238,22 @@ gftp_string_to_utf8 (gftp_request * requ
|
|
|
|
char *
|
|
gftp_string_from_utf8 (gftp_request * request, int force_local, const char *str,
|
|
- size_t dest_len)
|
|
+ size_t *dest_len)
|
|
{
|
|
return (NULL);
|
|
}
|
|
|
|
|
|
char *
|
|
-gftp_filename_to_utf8 (gftp_request * request, const char *str, size_t dest_len)
|
|
+gftp_filename_to_utf8 (gftp_request * request, const char *str, size_t *dest_len)
|
|
{
|
|
return (NULL);
|
|
}
|
|
|
|
|
|
char *
|
|
-gftp_filename_from_utf8 (gftp_request * request, int force_local,
|
|
- const char *str, size_t dest_len)
|
|
+gftp_filename_from_utf8 (gftp_request * request,
|
|
+ const char *str, size_t *dest_len)
|
|
{
|
|
return (NULL);
|
|
}
|