diff options
author | rillig <rillig> | 2007-10-09 12:14:04 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-10-09 12:14:04 +0000 |
commit | c89a77acbdf7556aa65f14202ad0ae70082eb861 (patch) | |
tree | 322b957fcd9c608102e42c59c78b5476614a6ded | |
parent | 38262f44fc3ff3708fe0a83baedebdc3eb9691e8 (diff) | |
download | pkgsrc-c89a77acbdf7556aa65f14202ad0ae70082eb861.tar.gz |
Fixed lvalue cast.
-rw-r--r-- | net/IglooFTP/distinfo | 3 | ||||
-rw-r--r-- | net/IglooFTP/patches/patch-ag | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/net/IglooFTP/distinfo b/net/IglooFTP/distinfo index 16f720cedcc..7d348f229ed 100644 --- a/net/IglooFTP/distinfo +++ b/net/IglooFTP/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.7 2007/02/20 12:45:06 joerg Exp $ +$NetBSD: distinfo,v 1.8 2007/10/09 12:14:04 rillig Exp $ SHA1 (IglooFTP-0.6.1.src.tar.gz) = ab56bc6c15dc81525b8e987ae5fc15e562f92eed RMD160 (IglooFTP-0.6.1.src.tar.gz) = 7f0971ec857542d96a09dffc9db8a3544df38fae @@ -9,3 +9,4 @@ SHA1 (patch-ac) = 4ab6aaf9e8bd4765a3d64a83ce6b84e661433749 SHA1 (patch-ad) = 9e2fbcc3ece0782d32b8bf661dd81e513822852e SHA1 (patch-ae) = 84cd31095b3b4772e27f7bc56daeaf77834680b6 SHA1 (patch-af) = 916f5d0c841bc706329f64ffd13b1ca820058ba4 +SHA1 (patch-ag) = 96dfa4a0faefc3970f886947e8863ff00dd9f148 diff --git a/net/IglooFTP/patches/patch-ag b/net/IglooFTP/patches/patch-ag new file mode 100644 index 00000000000..c8d33bae465 --- /dev/null +++ b/net/IglooFTP/patches/patch-ag @@ -0,0 +1,15 @@ +$NetBSD: patch-ag,v 1.1 2007/10/09 12:14:04 rillig Exp $ + +An lvalue cast is not necessary here. + +--- src/custom_io.h.orig 1999-04-15 18:05:15.000000000 +0200 ++++ src/custom_io.h 2007-10-09 14:03:48.000000000 +0200 +@@ -367,7 +367,7 @@ read_rc (void) + CUSTOM_LOAD_INT ("FIREWALL_PORT", user_rc.default_session.firewall_port); + CUSTOM_LOAD_STRING ("FIREWALL_USER", user_rc.default_session.firewall_username); + CUSTOM_LOAD_STRING ("FIREWALL_PASS", user_rc.default_session.firewall_userpass); +- CUSTOM_LOAD_INT ("FIREWALL_LOGIN_TYPE", (char) user_rc.default_session.firewall_login_type); ++ CUSTOM_LOAD_INT ("FIREWALL_LOGIN_TYPE", user_rc.default_session.firewall_login_type); + + + /* VIEW */ |