Mercurial > trustbridge
comparison cinst/main.c @ 290:b460d2cf088d
Move ifdef for write_stores_win call lower so that do_uninstall is no longer unused on linux
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Wed, 02 Apr 2014 14:12:37 +0000 |
parents | 9ad00a3255f4 |
children | 5ab445e6a4da |
comparison
equal
deleted
inserted
replaced
289:9ad00a3255f4 | 290:b460d2cf088d |
---|---|
245 /* Impossible */ | 245 /* Impossible */ |
246 return -1; | 246 return -1; |
247 } | 247 } |
248 | 248 |
249 | 249 |
250 #ifdef WIN32 | |
251 /* For uninstall we are done now */ | 250 /* For uninstall we are done now */ |
252 if (do_uninstall) | 251 if (do_uninstall) |
253 { | 252 { |
253 #ifdef WIN32 | |
254 return write_stores_win (NULL, all_valid_certs); | 254 return write_stores_win (NULL, all_valid_certs); |
255 #else | |
256 /*TODO*/ | |
255 } | 257 } |
256 #endif | 258 #endif |
257 | 259 |
258 ret = read_instructions_file (instruction_file_name, &to_install, | 260 ret = read_instructions_file (instruction_file_name, &to_install, |
259 &to_remove); | 261 &to_remove); |