diff options
Diffstat (limited to 'src/core/cs_sendpass.c')
-rw-r--r-- | src/core/cs_sendpass.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/cs_sendpass.c b/src/core/cs_sendpass.c index 8643cdeb5..ba9b8dd3f 100644 --- a/src/core/cs_sendpass.c +++ b/src/core/cs_sendpass.c @@ -49,7 +49,7 @@ class CommandCSSendPass : public Command if (!mail) return MOD_CONT; - fprintf(mail->pipe, getstring(founder, CHAN_SENDPASS_HEAD)); + fprintf(mail->pipe, "%s", getstring(founder, CHAN_SENDPASS_HEAD)); fprintf(mail->pipe, "\n\n"); fprintf(mail->pipe, getstring(founder, CHAN_SENDPASS_LINE_1), ci->name); @@ -57,9 +57,9 @@ class CommandCSSendPass : public Command fprintf(mail->pipe, getstring(founder, CHAN_SENDPASS_LINE_2), tmp_pass); fprintf(mail->pipe, "\n\n"); - fprintf(mail->pipe, getstring(founder, CHAN_SENDPASS_LINE_3)); + fprintf(mail->pipe, "%s", getstring(founder, CHAN_SENDPASS_LINE_3)); fprintf(mail->pipe, "\n\n"); - fprintf(mail->pipe, getstring(founder, CHAN_SENDPASS_LINE_4)); + fprintf(mail->pipe, "%s", getstring(founder, CHAN_SENDPASS_LINE_4)); fprintf(mail->pipe, "\n\n"); fprintf(mail->pipe, getstring(founder, CHAN_SENDPASS_LINE_5), NetworkName); |