diff options
author | 2009-02-24 21:40:51 +0000 | |
---|---|---|
committer | 2009-02-24 21:40:51 +0000 | |
commit | 34f3901d62617cae2e1708f3804ca3afb024f52f (patch) | |
tree | 1fd1d938b747739e52c8d282ca6cc2917f151331 | |
parent | Disable rt_if_track() for now. This causes the rtfree panic seen in PR6043 (diff) | |
download | wireguard-openbsd-34f3901d62617cae2e1708f3804ca3afb024f52f.tar.xz wireguard-openbsd-34f3901d62617cae2e1708f3804ca3afb024f52f.zip |
fix tilde expansion (eg. ~/Mail); ok gilles@
-rw-r--r-- | usr.sbin/smtpd/lka.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/lka.c b/usr.sbin/smtpd/lka.c index 37583b5833a..1bdd443e031 100644 --- a/usr.sbin/smtpd/lka.c +++ b/usr.sbin/smtpd/lka.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lka.c,v 1.27 2009/02/22 23:21:40 jacekm Exp $ */ +/* $OpenBSD: lka.c,v 1.28 2009/02/24 21:40:51 jacekm Exp $ */ /* * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -692,7 +692,6 @@ lka_expand(char *buf, size_t len, struct path *path) if (ret >= len) return ret; pbuf += strlen(pw->pw_dir); - ++p; continue; } |