summaryrefslogtreecommitdiff
path: root/source4/lib/registry/tools/regpatch.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-12-22 05:02:48 -0600
committerStefan Metzmacher <metze@samba.org>2007-12-24 01:51:01 -0600
commit670918f916cb881d4cc591516c70bafe4e39ba45 (patch)
treeb9c7725aa4c16b66b2380693fd374d670148c77a /source4/lib/registry/tools/regpatch.c
parentb7ffc3b404fbe3cf759e743c23e7bdbf75e71286 (diff)
downloadsamba-670918f916cb881d4cc591516c70bafe4e39ba45.tar.gz
samba-670918f916cb881d4cc591516c70bafe4e39ba45.tar.bz2
samba-670918f916cb881d4cc591516c70bafe4e39ba45.zip
r26563: Fix reg_diff_apply argument order.
(This used to be commit cfffd0357ee4c4bb3f3c9adb051eeee1bbac526a)
Diffstat (limited to 'source4/lib/registry/tools/regpatch.c')
-rw-r--r--source4/lib/registry/tools/regpatch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/registry/tools/regpatch.c b/source4/lib/registry/tools/regpatch.c
index ddbedce18a..71837d1807 100644
--- a/source4/lib/registry/tools/regpatch.c
+++ b/source4/lib/registry/tools/regpatch.c
@@ -65,7 +65,7 @@ int main(int argc, char **argv)
poptFreeContext(pc);
- reg_diff_apply(patch, h);
+ reg_diff_apply(h, patch);
return 0;
}