By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1194
Collapse All | Expand All

(-)kftpgrabber-0.8.1.orig/kftpgrabber/src/engine/ssl.cpp.ftbfs (-1 / +1 lines)
Lines 169-175 Link Here
169
169
170
void Ssl::setConnectionInfo()
170
void Ssl::setConnectionInfo()
171
{
171
{
172
  SSL_CIPHER *cipher;
172
  const SSL_CIPHER *cipher;
173
  char buffer[1024];
173
  char buffer[1024];
174
  
174
  
175
  buffer[0] = 0;
175
  buffer[0] = 0;
(-)kftpgrabber-0.8.1.orig/kftpgrabber/src/engine/ftpsocket.cpp.ORI (-5 / +7 lines)
Lines 758-764 Link Here
758
        }
758
        }
759
        
759
        
760
        // 229 Entering Extended Passive Mode (|||55016|)
760
        // 229 Entering Extended Passive Mode (|||55016|)
761
        char *begin = strchr(socket()->getResponse().ascii(), '(');
761
        const char *begin = strchr(socket()->getResponse().ascii(), '(');
762
        int port;
762
        int port;
763
      
763
      
764
        if (!begin || sscanf(begin, "(|||%d|)", &port) != 1) {
764
        if (!begin || sscanf(begin, "(|||%d|)", &port) != 1) {
Lines 793-804 Link Here
793
        
793
        
794
        // Ok PASV command successfull - let's parse the result
794
        // Ok PASV command successfull - let's parse the result
795
        int ip[6];
795
        int ip[6];
796
        char *begin = strchr(socket()->getResponse().ascii(), '(');
796
        const char *begin = strchr(socket()->getResponse().ascii(), '(');
797
      
797
      
798
        // Some stinky servers don't respect RFC and do it on their own
798
        // Some stinky servers don't respect RFC and do it on their own
799
        if (!begin)
799
        if (!begin) {
800
          begin = strchr(socket()->getResponse().ascii(), '=');
800
          delete &begin;
801
      
801
          const char *begin = strchr(socket()->getResponse().ascii(), '=');
802
        }
803
802
        if (!begin || (sscanf(begin, "(%d,%d,%d,%d,%d,%d)",&ip[0], &ip[1], &ip[2], &ip[3], &ip[4], &ip[5]) != 6 &&
804
        if (!begin || (sscanf(begin, "(%d,%d,%d,%d,%d,%d)",&ip[0], &ip[1], &ip[2], &ip[3], &ip[4], &ip[5]) != 6 &&
803
                       sscanf(begin, "=%d,%d,%d,%d,%d,%d",&ip[0], &ip[1], &ip[2], &ip[3], &ip[4], &ip[5]) != 6)) {
805
                       sscanf(begin, "=%d,%d,%d,%d,%d,%d",&ip[0], &ip[1], &ip[2], &ip[3], &ip[4], &ip[5]) != 6)) {
804
          // Unable to parse, try the next thing
806
          // Unable to parse, try the next thing
(-)kftpgrabber-0.8.1.orig/kftpgrabber/src/misc/libs/ssh/wrapper.c.ORI (-1 / +1 lines)
Lines 80-86 Link Here
80
    HMAC_CTX *ctx;
80
    HMAC_CTX *ctx;
81
    ctx=malloc(sizeof(HMAC_CTX));
81
    ctx=malloc(sizeof(HMAC_CTX));
82
#ifndef OLD_CRYPTO
82
#ifndef OLD_CRYPTO
83
    HMAC_CTX_init(ctx); // openssl 0.9.7 requires it.
83
    HMAC_CTX_init(ctx);
84
#endif
84
#endif
85
    switch(type){
85
    switch(type){
86
        case HMAC_SHA1:
86
        case HMAC_SHA1:
(-)kftpgrabber-0.8.1.orig/admin/configure.in.min.ORI (-1 / +1 lines)
Lines 43-49 Link Here
43
KDE_SET_PREFIX
43
KDE_SET_PREFIX
44
44
45
dnl generate the config header
45
dnl generate the config header
46
AM_CONFIG_HEADER(config.h) dnl at the distribution this done
46
AC_CONFIG_HEADER(config.h) dnl at the distribution this done
47
47
48
dnl Checks for programs.
48
dnl Checks for programs.
49
AC_CHECK_COMPILERS
49
AC_CHECK_COMPILERS

Return to bug 1194