anjuta r4320 - in branches/gnome-2-24: . plugins/subversion



Author: jrliggett
Date: Sun Oct  5 07:12:33 2008
New Revision: 4320
URL: http://svn.gnome.org/viewvc/anjuta?rev=4320&view=rev

Log:
* plugins/subversion/svn-switch-command.c (svn_switch_command_new):
Make sure the repository URL given to the switch command is canonicalized.

Modified:
   branches/gnome-2-24/ChangeLog
   branches/gnome-2-24/plugins/subversion/svn-switch-command.c

Modified: branches/gnome-2-24/plugins/subversion/svn-switch-command.c
==============================================================================
--- branches/gnome-2-24/plugins/subversion/svn-switch-command.c	(original)
+++ branches/gnome-2-24/plugins/subversion/svn-switch-command.c	Sun Oct  5 07:12:33 2008
@@ -117,7 +117,8 @@
 	self = g_object_new (SVN_TYPE_SWITCH_COMMAND, NULL);
 	self->priv->working_copy_path = svn_command_make_canonical_path (SVN_COMMAND (self),
 																	 working_copy_path);
-	self->priv->branch_url = g_strdup (branch_url);
+	self->priv->branch_url = svn_command_make_canonical_path (SVN_COMMAND (self),
+															  branch_url);
 	self->priv->revision = revision;
 	self->priv->recursive = recursive;
 	



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]