Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
alandekok committed Mar 5, 2014
1 parent 8aaef92 commit 222503b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/rlm_detail/rlm_detail.c
Expand Up @@ -186,7 +186,7 @@ static void detail_vp_print(TALLOC_CTX *ctx, FILE *out, VALUE_PAIR const *stacke
vp = talloc(ctx, VALUE_PAIR);
if (!vp) return;

memcpy(vp, stacked, sizeof(vp));
memcpy(vp, stacked, sizeof(*vp));
vp_print(out, vp);
talloc_free(vp);
}
Expand Down

0 comments on commit 222503b

Please sign in to comment.