Ticket #1465: filezilla_unicode_status_1.patch

File filezilla_unicode_status_1.patch, 316 bytes (added by tommywu, 20 years ago)

fix the problem for extra '.' after every unicode word

  • StatusCtrl.cpp

    old new  
    343343            last_unicode = false;
    344344        }
    345345        else {
    346             sprintf(buf, "\\u%d.", (signed short)x);
     346            sprintf(buf, "\\u%d", (signed short)x);
    347347            ustatus += buf;
    348348            last_unicode = true;
    349349        }