# HG changeset patch
# User Andre Heinecke <aheinecke@intevation.de>
# Date 1396447957 0
# Node ID b460d2cf088d041dd75669556f94c460c6b49a7a
# Parent  9ad00a3255f4f922e2fac783863fbe55d551811e
Move ifdef for write_stores_win call lower so that do_uninstall is no longer unused on linux

diff -r 9ad00a3255f4 -r b460d2cf088d cinst/main.c
--- a/cinst/main.c	Wed Apr 02 13:52:02 2014 +0000
+++ b/cinst/main.c	Wed Apr 02 14:12:37 2014 +0000
@@ -247,11 +247,13 @@
     }
 
 
-#ifdef WIN32
   /* For uninstall we are done now */
   if (do_uninstall)
     {
+#ifdef WIN32
       return write_stores_win (NULL, all_valid_certs);
+#else
+    /*TODO*/
     }
 #endif