diff options
Diffstat (limited to 'mbbsd/edit.c')
-rw-r--r-- | mbbsd/edit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mbbsd/edit.c b/mbbsd/edit.c index 4eadc280..310fd7b3 100644 --- a/mbbsd/edit.c +++ b/mbbsd/edit.c @@ -1043,7 +1043,7 @@ addsignature(FILE * fp, int ifuseanony) if (isdigit((int)buf[0])) ch = buf[0]; else - ch = '1' + rand() % num; + ch = '1' + random() % num; cuser.signature = buf[0]; if (ch != '0') { |