aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/comproc.c
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-17 02:25:15 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-17 02:25:15 +0100
commitfd6ff150e2fccdd7a8a794bd963e23c237e1c603 (patch)
tree1962658672444a5a4affdc2aa4f75dff377edd16 /FICS/comproc.c
parent8883ee2c02dab7d0b04cf418a609ce01922f1cde (diff)
Reformatted com_mailhelp()
Diffstat (limited to 'FICS/comproc.c')
-rw-r--r--FICS/comproc.c89
1 files changed, 53 insertions, 36 deletions
diff --git a/FICS/comproc.c b/FICS/comproc.c
index b85a445..717e558 100644
--- a/FICS/comproc.c
+++ b/FICS/comproc.c
@@ -1515,46 +1515,63 @@ PUBLIC int com_mailsource(int p, param_list param)
return COM_OK;
}
-PUBLIC int com_mailhelp(int p, param_list param)
-{ /* Sparky */
- char subj[81], fname[MAX_FILENAME_SIZE];
- char *iwant, *buffer[1000];
+PUBLIC int
+com_mailhelp(int p, param_list param)
+{
+ char *buffer[1000];
+ char *iwant;
+ char fname[MAX_FILENAME_SIZE];
+ char subj[81];
+ int count;
+ int lang = parray[p].language;
+ static char nullify = '\0';
+
+ if (!parray[p].registered) {
+ pprintf(p, "Only registered people can use the mailhelp "
+ "command.\n");
+ return COM_OK;
+ }
- int lang = parray[p].language;
- int count;
- static char nullify = '\0';
+ if (param[0].type == TYPE_NULL)
+ iwant = &nullify;
+ else
+ iwant = param[0].val.word;
- if (!parray[p].registered) {
- pprintf(p, "Only registered people can use the mailhelp command.\n");
- return COM_OK;
- }
- if (param[0].type == TYPE_NULL)
- iwant = &nullify;
- else
- iwant = param[0].val.word;
+ count = search_directory(help_dir[lang], iwant, buffer, 1000);
- count = search_directory(help_dir[lang], iwant, buffer, 1000);
- if (count == 0 && lang != LANG_DEFAULT) {
- count += search_directory(help_dir[LANG_DEFAULT], iwant, buffer, 1000);
- if (count > 0) {
- pprintf(p, "No help available in %s; using %s instead.\n",
- Language(lang), Language(LANG_DEFAULT));
- lang = LANG_DEFAULT;
- }
- }
- if (count == 0) {
- pprintf(p, "Found no help file matching \"%s\".\n", iwant);
- } else if (count == 1 || !strcmp(*buffer, iwant)) {
- sprintf(subj, "FICS help file from server %s: %s", fics_hostname, *buffer);
- sprintf(fname, "%s/%s",help_dir[lang], *buffer);
- mail_file_to_user (p, subj, fname);
- pprintf(p, "Help file %s sent to %s\n", *buffer, parray[p].emailAddress);
- } else {
- pprintf(p, "Found %d helpfiles matching that:\n", count);
- display_directory(p, buffer, count);
- }
+ if (count == 0 && lang != LANG_DEFAULT) {
+ count += search_directory(help_dir[LANG_DEFAULT], iwant, buffer,
+ 1000);
- return COM_OK;
+ if (count > 0) {
+ pprintf(p, "No help available in %s; "
+ "using %s instead.\n",
+ Language(lang),
+ Language(LANG_DEFAULT));
+ lang = LANG_DEFAULT;
+ }
+ }
+
+ if (count == 0) {
+ pprintf(p, "Found no help file matching \"%s\".\n", iwant);
+ } else if (count == 1 || !strcmp(*buffer, iwant)) {
+ sprintf(subj, "FICS help file from server %s: %s",
+ fics_hostname,
+ *buffer);
+ sprintf(fname, "%s/%s",
+ help_dir[lang],
+ *buffer);
+
+ mail_file_to_user(p, subj, fname);
+
+ pprintf(p, "Help file %s sent to %s\n", *buffer,
+ parray[p].emailAddress);
+ } else {
+ pprintf(p, "Found %d helpfiles matching that:\n", count);
+ display_directory(p, buffer, count);
+ }
+
+ return COM_OK;
}
PUBLIC int com_handles(int p, param_list param)