diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-07 21:02:43 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-07 21:02:43 +0000 |
commit | 31f925f50413118a16a16632d7d86cfed1783602 (patch) | |
tree | d7811f77cdd331aeef6c95e0da25db2477c00a0b /src/numeric.c | |
parent | a08e07b05d737a20f404841ac925fa0ff75eca54 (diff) |
- First pass of conf parser stabilization/cleanup
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1646 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src/numeric.c')
-rw-r--r-- | src/numeric.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/numeric.c b/src/numeric.c index 4da0786..21c574e 100644 --- a/src/numeric.c +++ b/src/numeric.c @@ -108,7 +108,7 @@ change_reply(const char *locale, int linecnt, int reply, char *new_reply) } MyFree(replies[reply].translated); - DupString(replies[reply].translated, new_reply); + replies[reply].translated = xstrdup(new_reply); return(1); } |