Imported Upstream version 1.35
[platform/upstream/connman.git] / vpn / plugins / pptp.c
index 9f2a214..27b1d50 100644 (file)
@@ -77,7 +77,7 @@ struct {
        { "PPPD.RequirMPPE40", "require-mppe-40", NULL, OPT_BOOL },
        { "PPPD.RequirMPPE128", "require-mppe-128", NULL, OPT_BOOL },
        { "PPPD.RequirMPPEStateful", "mppe-stateful", NULL, OPT_BOOL },
-       { "PPPD.NoVJ", "no-vj-comp", NULL, OPT_BOOL },
+       { "PPPD.NoVJ", "novj", NULL, OPT_BOOL },
 };
 
 static DBusConnection *connection;
@@ -289,8 +289,9 @@ static void request_input_reply(DBusMessage *reply, void *user_data)
 
        DBG("provider %p", pptp_reply->provider);
 
-       if (dbus_message_get_type(reply) == DBUS_MESSAGE_TYPE_ERROR) {
-               error = dbus_message_get_error_name(reply);
+       if (!reply || dbus_message_get_type(reply) == DBUS_MESSAGE_TYPE_ERROR) {
+               if (reply)
+                       error = dbus_message_get_error_name(reply);
                goto done;
        }