From 63ad19f71c6b9474042f4ea9d5859e2849a73da8 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 28 Jun 2006 18:46:47 +0000 Subject: [PATCH] r16638: Fix bug #3885, reported by jason@ncac.gwu.edu. Use the correct enumerated type in the macro. Jeremy. --- source/utils/net_rpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/utils/net_rpc.c b/source/utils/net_rpc.c index f29398c822c..190992e3741 100644 --- a/source/utils/net_rpc.c +++ b/source/utils/net_rpc.c @@ -1442,7 +1442,7 @@ do { if (strequal(ctx->thiscmd, name)) { \ #define SETSTR(name, rec, flag) \ do { if (strequal(ctx->thiscmd, name)) { \ - init_unistr2(&usr->uni_##rec, argv[0], STR_TERMINATE); \ + init_unistr2(&usr->uni_##rec, argv[0], UNI_STR_TERMINATE); \ init_uni_hdr(&usr->hdr_##rec, &usr->uni_##rec); \ usr->fields_present |= ACCT_##flag; } \ } while (0);