Changeset 991:7962cc78e9ec for charset.c

Show
Ignore:
Timestamp:
1999-03-30 22:35:03 (10 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

Stupid error.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • charset.c

    r989 r991  
    877877  d->out.size = DECODER_BUFFSIZE; 
    878878 
    879   d->_in = &d->out; 
     879  d->_in = &d->in; 
    880880   
    881881  if (!src || !dest || mutt_is_utf8 (dest)) 
    882882  { 
    883883    d->just_take_id = 1; 
    884     d->_in = &d->in; 
     884    d->_in = &d->out; 
    885885    return d; 
    886886  } 
     
    891891    { 
    892892      d->just_take_id = 1; 
    893       d->_in = &d->in; 
     893      d->_in = &d->out; 
    894894      return d; 
    895895    } 
     
    902902  { 
    903903    d->just_take_id = 1; 
    904     d->_in = &d->in; 
     904    d->_in = &d->out; 
    905905  } 
    906906