fix indent

This commit is contained in:
Fumitoshi UKAI
2002-12-27 16:09:18 +00:00
parent 933224215f
commit a609f73aaa
3 changed files with 38 additions and 33 deletions
+4 -3
View File
@@ -1,4 +1,4 @@
/* $Id: etc.c,v 1.45 2002/12/27 15:53:04 ukai Exp $ */
/* $Id: etc.c,v 1.46 2002/12/27 16:09:18 ukai Exp $ */
#include "fm.h"
#include <pwd.h>
#include "myctype.h"
@@ -1745,8 +1745,9 @@ mymktime(char *timestr)
return -1;
}
#ifdef DEBUG
fprintf(stderr, "year=%d month=%d day=%d hour:min:sec=%d:%d:%d zone=%d:%d\n",
year, mon, day, hour, min, sec, z_hour, z_min);
fprintf(stderr,
"year=%d month=%d day=%d hour:min:sec=%d:%d:%d zone=%d:%d\n", year,
mon, day, hour, min, sec, z_hour, z_min);
#endif /* DEBUG */
mon -= 3;
+10 -10
View File
@@ -1,4 +1,4 @@
/* $Id: file.c,v 1.172 2002/12/27 16:07:44 ukai Exp $ */
/* $Id: file.c,v 1.173 2002/12/27 16:09:18 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include "myctype.h"
@@ -2034,7 +2034,7 @@ loadGeneralFile(char *path, ParsedURL *volatile current, char *referer,
b = loadSomething(&f, pu.real_file ? pu.real_file : pu.file, proc, t_buf);
frame_source = 0;
if (f.scheme != SCM_NNTP && f.scheme != SCM_NEWS)
UFclose(&f);
UFclose(&f);
if (b) {
b->real_scheme = f.scheme;
b->real_type = real_type;
@@ -6458,10 +6458,10 @@ loadHTMLstream(URLFile *f, Buffer *newBuf, FILE * src, int internal)
if (f->scheme == SCM_NEWS && lineBuf2->ptr[0] == '.') {
Strshrinkfirst(lineBuf2, 1);
if (lineBuf2->ptr[0] == '\n' || lineBuf2->ptr[0] == '\r' ||
lineBuf2->ptr[0] == '\0') {
/*
iseos(f->stream) = TRUE;
*/
lineBuf2->ptr[0] == '\0') {
/*
* iseos(f->stream) = TRUE;
*/
break;
}
}
@@ -6763,10 +6763,10 @@ loadBuffer(URLFile *uf, Buffer *volatile newBuf)
if (uf->scheme == SCM_NEWS && lineBuf2->ptr[0] == '.') {
Strshrinkfirst(lineBuf2, 1);
if (lineBuf2->ptr[0] == '\n' || lineBuf2->ptr[0] == '\r' ||
lineBuf2->ptr[0] == '\0') {
/*
iseos(uf->stream) = TRUE;
*/
lineBuf2->ptr[0] == '\0') {
/*
* iseos(uf->stream) = TRUE;
*/
break;
}
}
+23 -19
View File
@@ -1,4 +1,4 @@
/* $Id: news.c,v 1.1 2002/12/27 16:07:44 ukai Exp $ */
/* $Id: news.c,v 1.2 2002/12/27 16:09:18 ukai Exp $ */
#include "fm.h"
#include "myctype.h"
#include <stdio.h>
@@ -33,7 +33,7 @@ KeyAbort(SIGNAL_ARG)
}
static Str
news_command(News *news, char *command, int *status)
news_command(News * news, char *command, int *status)
{
Str tmp;
char c;
@@ -54,7 +54,7 @@ news_command(News *news, char *command, int *status)
}
static void
news_close(News *news)
news_close(News * news)
{
if (!news->host)
return;
@@ -70,7 +70,7 @@ news_close(News *news)
}
static int
news_open(News *news)
news_open(News * news)
{
Str tmp;
int sock, status;
@@ -97,7 +97,7 @@ news_open(News *news)
}
static void
news_quit(News *news)
news_quit(News * news)
{
news_command(news, "QUIT", NULL);
news_close(news);
@@ -114,9 +114,9 @@ name_from_address(char *str, int n)
if (*s == '<' && (p = strchr(s, '>'))) {
*p++ = '\0';
SKIP_BLANKS(p);
if (*p == '\0') /* <address> */
if (*p == '\0') /* <address> */
s++;
else /* <address> name ? */
else /* <address> name ? */
s = p;
}
else if ((p = strchr(s, '<'))) /* name <address> */
@@ -192,9 +192,10 @@ add_news_message(Str str, int index, char *date, char *name, char *subject,
t = mymktime(date);
tm = localtime(&t);
Strcat(str,
Sprintf("<tr valign=top><td>%d<td nowrap>(%02d/%02d)<td nowrap>%s<td><a href=\"news:%s\">%s</a>\n",
index, tm->tm_mon + 1, tm->tm_mday, html_quote_s(name),
html_quote(file_quote(mid)), html_quote(subject)));
Sprintf
("<tr valign=top><td>%d<td nowrap>(%02d/%02d)<td nowrap>%s<td><a href=\"news:%s\">%s</a>\n",
index, tm->tm_mon + 1, tm->tm_mday, html_quote_s(name),
html_quote(file_quote(mid)), html_quote(subject)));
}
InputStream
@@ -223,8 +224,7 @@ openNewsStream(ParsedURL *pu)
else
mode = NULL;
if (current_news.host) {
if (!strcmp(current_news.host, host) &&
current_news.port == port) {
if (!strcmp(current_news.host, host) && current_news.port == port) {
tmp = Sprintf("MODE %s", mode ? mode : "READER");
tmp = news_command(&current_news, tmp->ptr, &status);
if (status != 200 && status != 201)
@@ -296,11 +296,14 @@ readNewsgroup(ParsedURL *pu)
if (fmInitialized)
term_cbreak();
page = Sprintf("<title>Newsgroup: %s</title>\n<h1>Newsgroup:&nbsp;%s</h1>\n<hr>\n",
qgroup, qgroup);
page =
Sprintf
("<title>Newsgroup: %s</title>\n<h1>Newsgroup:&nbsp;%s</h1>\n<hr>\n",
qgroup, qgroup);
qgroup = html_quote(file_quote(group)); /* URL */
tmp = news_command(&current_news, Sprintf("GROUP %s", group)->ptr, &status);
tmp =
news_command(&current_news, Sprintf("GROUP %s", group)->ptr, &status);
if (status != 211)
goto news_list;
if (sscanf(tmp->ptr, "%d %d %d %d", &status, &i, &first, &last) != 4)
@@ -329,7 +332,7 @@ readNewsgroup(ParsedURL *pu)
Strcat_charp(page, "<table>\n");
news_command(&current_news, Sprintf("XOVER %d-%d", start, end - 1)->ptr,
&status);
&status);
if (status == 224) {
f.scheme = SCM_NEWS;
while (1) {
@@ -416,8 +419,9 @@ readNewsgroup(ParsedURL *pu)
if (sscanf(q, "%d %d", &last, &first) == 2 && last >= first)
i = last - first + 1;
Strcat(page,
Sprintf("<tr><td align=right>%d<td><a href=\"news:%s\">%s</a>\n",
i, html_quote(file_quote(p)), html_quote(p)));
Sprintf
("<tr><td align=right>%d<td><a href=\"news:%s\">%s</a>\n", i,
html_quote(file_quote(p)), html_quote(p)));
}
if (flag == 2)
Strcat_charp(page, "</table>\n");
@@ -435,4 +439,4 @@ disconnectNews(void)
news_quit(&current_news);
}
#endif /* USE_NNTP */
#endif /* USE_NNTP */