diff options
author | aschrijver <aschrijver@cvs.openbsd.org> | 2009-01-28 00:53:30 +0000 |
---|---|---|
committer | aschrijver <aschrijver@cvs.openbsd.org> | 2009-01-28 00:53:30 +0000 |
commit | 35be629db5647d7bb1a635c75ff318421d0bfeb3 (patch) | |
tree | 59082a265aca6e286fb5717062eecdd1c6f09397 /usr.sbin/ypldap | |
parent | 4c132b4638ab8ba0c506c526fdb9061a615e7919 (diff) |
Correct dup to dupstr.
Diffstat (limited to 'usr.sbin/ypldap')
-rw-r--r-- | usr.sbin/ypldap/aldap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ypldap/aldap.c b/usr.sbin/ypldap/aldap.c index f96af159487..71f19cf19b9 100644 --- a/usr.sbin/ypldap/aldap.c +++ b/usr.sbin/ypldap/aldap.c @@ -1,5 +1,5 @@ -/* $Id: aldap.c,v 1.17 2009/01/27 16:17:49 aschrijver Exp $ */ -/* $OpenBSD: aldap.c,v 1.17 2009/01/27 16:17:49 aschrijver Exp $ */ +/* $Id: aldap.c,v 1.18 2009/01/28 00:53:29 aschrijver Exp $ */ +/* $OpenBSD: aldap.c,v 1.18 2009/01/28 00:53:29 aschrijver Exp $ */ /* * Copyright (c) 2008 Alexander Schrijver <aschrijver@openbsd.org> @@ -547,7 +547,7 @@ done: free(dupstr); return (1); fail: - free(dup); + free(dupstr); return (-1); } |