diff options
author | Eric Faurot <eric@cvs.openbsd.org> | 2013-11-18 11:47:17 +0000 |
---|---|---|
committer | Eric Faurot <eric@cvs.openbsd.org> | 2013-11-18 11:47:17 +0000 |
commit | 75603064b42dfb9d84166feb14807431559f25a3 (patch) | |
tree | e648f6663481337b3cb02211cdf4780dc43cae7b /usr.sbin/smtpd/smtpd-api.h | |
parent | ce2fb986d5ad44761ff5d96b8e2770b7e5cd8b6a (diff) |
change dict_poproot() prototype: do not take key placeholder parameter as
it can't work that way.
Diffstat (limited to 'usr.sbin/smtpd/smtpd-api.h')
-rw-r--r-- | usr.sbin/smtpd/smtpd-api.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/smtpd/smtpd-api.h b/usr.sbin/smtpd/smtpd-api.h index 46eeaa01868..0c3224f59a6 100644 --- a/usr.sbin/smtpd/smtpd-api.h +++ b/usr.sbin/smtpd/smtpd-api.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd-api.h,v 1.10 2013/10/27 17:47:53 eric Exp $ */ +/* $OpenBSD: smtpd-api.h,v 1.11 2013/11/18 11:47:16 eric Exp $ */ /* * Copyright (c) 2013 Eric Faurot <eric@openbsd.org> @@ -231,9 +231,9 @@ void *dict_get(struct dict *, const char *); void *dict_xget(struct dict *, const char *); void *dict_pop(struct dict *, const char *); void *dict_xpop(struct dict *, const char *); -int dict_poproot(struct dict *, const char * *, void **); -int dict_root(struct dict *, const char * *, void **); -int dict_iter(struct dict *, void **, const char * *, void **); +int dict_poproot(struct dict *, void **); +int dict_root(struct dict *, const char **, void **); +int dict_iter(struct dict *, void **, const char **, void **); int dict_iterfrom(struct dict *, void **, const char *, const char **, void **); void dict_merge(struct dict *, struct dict *); |