]> git.deb.at Git - pkg/abook.git/blobdiff - options.c
Store rcfile and addressbook to .abook directory
[pkg/abook.git] / options.c
index 408de43c4b6eb4420c2089545b21f6ed5b33115a..e1a554391b2d2a56313c833de2077ccdf24c4b74 100644 (file)
--- a/options.c
+++ b/options.c
@@ -2,7 +2,7 @@
 /*
  * $Id$
  *
- * by JH <jheinonen@bigfoot.com>
+ * by JH <jheinonen@users.sourceforge.net>
  *
  * Copyright (C) Jaakko Heinonen
  */
@@ -80,10 +80,18 @@ init_options()
                default_options();
 }
 
+
+#if 1
+extern int alternative_rcfile;
+#endif
+
 void
 close_config()
 {
-       save_options();
+#if 1
+       if(!alternative_rcfile)
+               save_options();
+#endif
 
        conff_free_nodes(abook_config);
 }
@@ -114,6 +122,7 @@ load_options()
        }
 }
 
+#if 1
 void
 save_options()
 {
@@ -122,6 +131,7 @@ save_options()
 
        conff_save_file(abook_config, rcfile);
 }
+#endif
 
 static void
 options_add_key(char *key, char *value)