diff --git a/CHANGES b/CHANGES
index 231d1b606674624a42350696116f213d25264b90..8ab4fce10b8a14ec08dc86189f30f41e48885747 100644
--- a/CHANGES
+++ b/CHANGES
@@ -134,6 +134,10 @@ pbx_lua
    stopped and restarted using the autoservice_stop() and autoservice_start()
    functions.
 
+PrivacyManager
+--------------------------
+ * Removed unused options position since there are no more options defined.
+
 ------------------------------------------------------------------------------
 --- Functionality changes from Asterisk 1.6.2 to Asterisk 1.8 ----------------
 ------------------------------------------------------------------------------
diff --git a/apps/app_privacy.c b/apps/app_privacy.c
index 77c3a1f2e2d43e1453aa4348006c5db14ef8fb8b..e52f024752a4049f9bd55a1ee28f8a54cae99b93 100644
--- a/apps/app_privacy.c
+++ b/apps/app_privacy.c
@@ -92,8 +92,10 @@ static int privacy_exec(struct ast_channel *chan, const char *data)
 	AST_DECLARE_APP_ARGS(args,
 		AST_APP_ARG(maxretries);
 		AST_APP_ARG(minlength);
-		AST_APP_ARG(options);
 		AST_APP_ARG(checkcontext);
+
+		/* This must be last in the list until we actually have some options again. :) */
+		AST_APP_ARG(options);
 	);
 
 	if (chan->caller.id.number.valid