diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-05-28 01:36:03 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-05-28 01:36:03 +0000 |
commit | c71e41f898f5e85644a2bb9b67411b2db5c94c87 (patch) | |
tree | a09de24fe6dd9d841a2d42acc0abb62e3787f179 /usr.sbin/sasyncd/conf.y | |
parent | 42b2ee984c2ac7fd32e721926779b163bc311fa3 (diff) |
result not used; ok ho
Diffstat (limited to 'usr.sbin/sasyncd/conf.y')
-rw-r--r-- | usr.sbin/sasyncd/conf.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sasyncd/conf.y b/usr.sbin/sasyncd/conf.y index 44dca2cf9e5..322e7309d0d 100644 --- a/usr.sbin/sasyncd/conf.y +++ b/usr.sbin/sasyncd/conf.y @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.y,v 1.5 2005/05/28 01:07:52 ho Exp $ */ +/* $OpenBSD: conf.y,v 1.6 2005/05/28 01:36:02 deraadt Exp $ */ /* * Copyright (c) 2005 Håkan Olsson. All rights reserved. @@ -237,7 +237,7 @@ yylex(void) else { for (p = confptr; *p && p < confbuf + conflen; p++) ; - *p++; + p++; if (!*p) return 0; confptr = p; |