Index: trunk/src/org/openstreetmap/josm/io/remotecontrol/RequestProcessor.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/remotecontrol/RequestProcessor.java	(revision 19416)
+++ trunk/src/org/openstreetmap/josm/io/remotecontrol/RequestProcessor.java	(revision 19417)
@@ -75,5 +75,5 @@
      */
     public static String getProtocolVersion() {
-        String OsmServerUrl = OsmApi.getOsmApi().getServerUrl();
+        String osmServerUrl = OsmApi.getOsmApi().getServerUrl();
         String defaultOsmApiUrl = JosmUrls.getInstance().getDefaultOsmApiUrl();
         return Json.createObjectBuilder()
@@ -83,5 +83,5 @@
                 .add("application", JOSM_REMOTE_CONTROL)
                 .add("version", Version.getInstance().getVersion())
-                .add("osm_server", OsmServerUrl.equals(defaultOsmApiUrl) ? "default" : "custom")
+                .add("osm_server", osmServerUrl.equals(defaultOsmApiUrl) ? "default" : "custom")
                 .build().toString();
     }
