fix another stupid bug, gah

This commit is contained in:
William Pitcock 2008-08-17 07:46:18 -05:00
parent 76eca655f9
commit 39352a39f2
1 changed files with 1 additions and 1 deletions

View File

@ -471,7 +471,7 @@ conf_set_privset_privs(void *data)
char *privs_old = privs;
privs = rb_malloc(strlen(privs_old) + 1 + strlen(args->v.string) + 1);
strcpy(privs_old, privs);
strcpy(privs, privs_old);
strcat(privs, " ");
strcat(privs, args->v.string);