gaim/gaim

sf patch #1123637, from Ka-Hing Cheung
oldstatus
2005-02-20, Mark Doliner
8f115cba4a80
Parents f3fbf625d768
Children 847935635b74
sf patch #1123637, from Ka-Hing Cheung
gaim_str_sub_away_formatters would strip out the '%'
char if nothing is after it, this patch fixes that.
  • +2 -0
    src/util.c
  • --- a/src/util.c Sun Feb 20 15:16:54 2005 -0500
    +++ b/src/util.c Sun Feb 20 15:21:50 2005 -0500
    @@ -2147,6 +2147,8 @@
    default:
    cpy[cnt++] = *c;
    }
    + } else {
    + cpy[cnt++] = *c;
    }
    break;
    default: