diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2007-06-26 11:49:51 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2007-06-26 11:49:51 +0000 |
commit | 00cd032941eb2f5e65512225342ebd5a03929cb2 (patch) | |
tree | 443b6f7e2a7c57f7cc29362c09a6913d229d0b27 /misc/astrolog/files | |
parent | a0718a37faaf941e8653ea666eb559e6aba2d5c6 (diff) | |
download | ports-00cd032941eb2f5e65512225342ebd5a03929cb2.tar.gz ports-00cd032941eb2f5e65512225342ebd5a03929cb2.zip |
Notes
Diffstat (limited to 'misc/astrolog/files')
-rw-r--r-- | misc/astrolog/files/patch-ac | 13 | ||||
-rw-r--r-- | misc/astrolog/files/patch-io.c | 34 |
2 files changed, 45 insertions, 2 deletions
diff --git a/misc/astrolog/files/patch-ac b/misc/astrolog/files/patch-ac index 3b5a728a6341..48b0f839bf0e 100644 --- a/misc/astrolog/files/patch-ac +++ b/misc/astrolog/files/patch-ac @@ -1,5 +1,5 @@ ---- astrolog.c.orig 1998-12-23 23:29:07.000000000 +0300 -+++ astrolog.c 2007-06-23 18:07:49.000000000 +0400 +--- astrolog.c.orig 1998-12-23 23:29:03.000000000 +0300 ++++ astrolog.c 2007-06-26 15:44:04.000000000 +0400 @@ -35,6 +35,7 @@ ** Last code change made 12/20/1998. */ @@ -8,6 +8,15 @@ #include "astrolog.h" +@@ -234,7 +235,7 @@ + char *pch = szLine; + + /* Split the entered line up into its individual switch strings. */ +- while (*pch >= ' ' || *pch == chTab) { ++ while (!iscntrl((_char)*pch) || *pch == chTab) { + if (*pch == ' ' || *pch == chTab) { + if (fSpace) + /* Skip over the current run of spaces between strings. */ @@ -1146,8 +1147,18 @@ case 'z': if (ch1 == '0') { diff --git a/misc/astrolog/files/patch-io.c b/misc/astrolog/files/patch-io.c new file mode 100644 index 000000000000..4c882681c1ac --- /dev/null +++ b/misc/astrolog/files/patch-io.c @@ -0,0 +1,34 @@ +--- io.c.orig 1998-12-23 23:29:21.000000000 +0300 ++++ io.c 2007-06-26 15:35:03.000000000 +0400 +@@ -35,6 +35,7 @@ + ** Last code change made 12/20/1998. + */ + ++#include <ctype.h> + #include "astrolog.h" + + +@@ -139,12 +140,12 @@ + } + + loop { +- while (!feof(file) && (ch = getc(file)) < ' ') ++ while (!feof(file) && iscntrl((_char)(ch = getc(file)))) + ; + if (feof(file)) + break; + for (szLine[0] = ch, i = 1; i < cchSzMax && !feof(file) && +- (szLine[i] = getc(file)) >= ' '; i++) ++ !iscntrl((_char)(szLine[i] = getc(file))); i++) + ; + szLine[i] = chNull; + argc = NParseCommandLine(szLine, argv); +@@ -675,7 +676,7 @@ + /* them. Be prepared to skip over them in old files for compatibility. */ + + if (i == oVtx) { +- while (getc(file) >= ' ') ++ while (!iscntrl((_char)getc(file))) + ; + if ((ch = getc(file)) != 'H') + i = cuspHi; |