diff options
author | brian <brian@FreeBSD.org> | 1999-12-23 21:43:12 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1999-12-23 21:43:12 +0000 |
commit | da8bf273f760b810a98efec744421da718cc4aa7 (patch) | |
tree | faf02d1ef5e072dacf6f86d3c7c643287f5434d3 /usr.sbin/ppp/systems.c | |
parent | d191496da280be8d05a4bff7952e79ddb4d030ec (diff) | |
download | FreeBSD-src-da8bf273f760b810a98efec744421da718cc4aa7.zip FreeBSD-src-da8bf273f760b810a98efec744421da718cc4aa7.tar.gz |
Understand double-quotes anywhere on a command line in the same
way that a shell does. The previous way ppp did it just didn't
make any sense.
Diffstat (limited to 'usr.sbin/ppp/systems.c')
-rw-r--r-- | usr.sbin/ppp/systems.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/ppp/systems.c b/usr.sbin/ppp/systems.c index 5c70a79..9574648 100644 --- a/usr.sbin/ppp/systems.c +++ b/usr.sbin/ppp/systems.c @@ -267,7 +267,7 @@ GetLabel(char *line, const char *filename, int linenum) { char *wp; - if ((wp = findblank(line, 0, 1)) != NULL) { + if ((wp = findblank(line, 1)) != NULL) { while (issep(*wp)) *wp++ = '\0'; if (*wp == '#') |