socsvn commit: r256827 - soc2013/mattbw/backend/actions

mattbw at FreeBSD.org mattbw at FreeBSD.org
Mon Sep 2 08:51:50 UTC 2013


Author: mattbw
Date: Mon Sep  2 08:51:50 2013
New Revision: 256827
URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=256827

Log:
  Swap idents and names in repo-list.
  
  This is because the name is now the identifier used, and the ident is now
  the description.
  

Modified:
  soc2013/mattbw/backend/actions/get_repo_list.c

Modified: soc2013/mattbw/backend/actions/get_repo_list.c
==============================================================================
--- soc2013/mattbw/backend/actions/get_repo_list.c	Mon Sep  2 08:50:50 2013	(r256826)
+++ soc2013/mattbw/backend/actions/get_repo_list.c	Mon Sep  2 08:51:50 2013	(r256827)
@@ -43,8 +43,8 @@
 	while (pkg_repos(&repo) == EPKG_OK) {
 		assert(backend != NULL);
 		(void)pk_backend_repo_detail(backend,
-		    pkg_repo_ident(repo),
 		    pkg_repo_name(repo),
+		    pkg_repo_ident(repo),
 		    pkg_repo_enabled(repo));
 	}
 


More information about the svn-soc-all mailing list