diff options
author | Roger Dingledine <arma@torproject.org> | 2005-12-27 02:48:02 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-12-27 02:48:02 +0000 |
commit | 370dcbc7babfad03c49e48e7b83d437aeb9f88ee (patch) | |
tree | 3fe24ec5d6439b1ed21d571f66a95ae4500b73c0 /src | |
parent | 5807bd0635cb66afb38cab8394e2f3d0a6f7712f (diff) | |
download | tor-370dcbc7babfad03c49e48e7b83d437aeb9f88ee.tar.gz tor-370dcbc7babfad03c49e48e7b83d437aeb9f88ee.zip |
and some comments
svn:r5656
Diffstat (limited to 'src')
-rw-r--r-- | src/or/config.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/or/config.c b/src/or/config.c index 481db2526a..25e456f403 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -3189,8 +3189,12 @@ validate_data_directory(or_options_t *options) return 0; } +/** This string must remain the same forevermore. It is how we + * recognize that the torrc file doesn't need to be backed up. */ #define GENERATED_FILE_PREFIX "# This file was generated by Tor; " \ "if you edit it, comments will not be preserved" +/** This string can change; it tries to give the reader an idea + * that editing this file by hand is not a good plan. */ #define GENERATED_FILE_COMMENT "# If you want a config file with " \ "comments, look for torrc.orig.1 or similar" |