diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-11-20 23:31:38 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-11-20 23:31:38 +0100 |
commit | d8e75ac0a1ee5782af82e36d9ec72bfc73670837 (patch) | |
tree | 3e2ef2657768bc4207620c1441febd930a6d3a63 /FICS | |
parent | a9122b90a1ca97ced19ef36a6f417911970eb40c (diff) |
Added newlines
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/eco.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -164,6 +164,7 @@ ECO_init(void) } (void) strlcpy(ptmp, "", sizeof tmp); + if (fgets(ptmp, sizeof tmp, fp) == NULL || feof(fp)) break; @@ -234,6 +235,7 @@ NIC_init(void) } (void) strlcpy(ptmp, "", sizeof tmp); + if (fgets(ptmp, sizeof tmp, fp) == NULL || feof(fp)) break; @@ -297,6 +299,7 @@ LONG_init(void) } (void) strlcpy(ptmp, "", sizeof tmp); + if (fgets(ptmp, sizeof tmp, fp) == NULL || feof(fp)) break; |