Acctually ntohl and htonl are identical, so this doesn't affect
anything, but it is conceptually wrong.
Signed-off-by: Liping Zhang <zlpnobody@gmail.com>
Acked-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
        if (!tb[NFTA_FIB_RESULT])
                return ERR_PTR(-EINVAL);
 
-       result = htonl(nla_get_be32(tb[NFTA_FIB_RESULT]));
+       result = ntohl(nla_get_be32(tb[NFTA_FIB_RESULT]));
 
        switch (result) {
        case NFT_FIB_RESULT_OIF:
 
        if (!tb[NFTA_FIB_RESULT])
                return ERR_PTR(-EINVAL);
 
-       result = htonl(nla_get_be32(tb[NFTA_FIB_RESULT]));
+       result = ntohl(nla_get_be32(tb[NFTA_FIB_RESULT]));
 
        switch (result) {
        case NFT_FIB_RESULT_OIF:
 
        if ((priv->flags & (NFTA_FIB_F_SADDR | NFTA_FIB_F_DADDR)) == 0)
                return -EINVAL;
 
-       priv->result = htonl(nla_get_be32(tb[NFTA_FIB_RESULT]));
+       priv->result = ntohl(nla_get_be32(tb[NFTA_FIB_RESULT]));
        priv->dreg = nft_parse_register(tb[NFTA_FIB_DREG]);
 
        switch (priv->result) {