Changeset 542


Ignore:
Timestamp:
02/08/10 23:27:43 (2 years ago)
Author:
eagle
Message:

minor bugfix with initial config file read

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure

    r541 r542  
    11#! /bin/sh 
    22# Guess values for system-dependent variables and create Makefiles. 
    3 # Generated by GNU Autoconf 2.62 for onioncat 0.2.2.r541. 
     3# Generated by GNU Autoconf 2.62 for onioncat 0.2.2.r542. 
    44# 
    55# Report bugs to <rahra@cypherpunk.at>. 
     
    597597PACKAGE_NAME='onioncat' 
    598598PACKAGE_TARNAME='onioncat' 
    599 PACKAGE_VERSION='0.2.2.r541' 
    600 PACKAGE_STRING='onioncat 0.2.2.r541' 
     599PACKAGE_VERSION='0.2.2.r542' 
     600PACKAGE_STRING='onioncat 0.2.2.r542' 
    601601PACKAGE_BUGREPORT='rahra@cypherpunk.at' 
    602602 
     
    12611261  # This message is too long to be a string in the A/UX 3.1 sh. 
    12621262  cat <<_ACEOF 
    1263 \`configure' configures onioncat 0.2.2.r541 to adapt to many kinds of systems. 
     1263\`configure' configures onioncat 0.2.2.r542 to adapt to many kinds of systems. 
    12641264 
    12651265Usage: $0 [OPTION]... [VAR=VALUE]... 
     
    13311331if test -n "$ac_init_help"; then 
    13321332  case $ac_init_help in 
    1333      short | recursive ) echo "Configuration of onioncat 0.2.2.r541:";; 
     1333     short | recursive ) echo "Configuration of onioncat 0.2.2.r542:";; 
    13341334   esac 
    13351335  cat <<\_ACEOF 
     
    14231423if $ac_init_version; then 
    14241424  cat <<\_ACEOF 
    1425 onioncat configure 0.2.2.r541 
     1425onioncat configure 0.2.2.r542 
    14261426generated by GNU Autoconf 2.62 
    14271427 
     
    14371437running configure, to aid debugging if configure makes a mistake. 
    14381438 
    1439 It was created by onioncat $as_me 0.2.2.r541, which was 
     1439It was created by onioncat $as_me 0.2.2.r542, which was 
    14401440generated by GNU Autoconf 2.62.  Invocation command line was 
    14411441 
     
    20862086# Define the identity of the package. 
    20872087 PACKAGE='onioncat' 
    2088  VERSION='0.2.2.r541' 
     2088 VERSION='0.2.2.r542' 
    20892089 
    20902090 
     
    22372237 
    22382238cat >>confdefs.h <<\_ACEOF 
    2239 #define SVN_REVISION "541" 
     2239#define SVN_REVISION "542" 
    22402240_ACEOF 
    22412241 
     
    53265326# values after options handling. 
    53275327ac_log=" 
    5328 This file was extended by onioncat $as_me 0.2.2.r541, which was 
     5328This file was extended by onioncat $as_me 0.2.2.r542, which was 
    53295329generated by GNU Autoconf 2.62.  Invocation command line was 
    53305330 
     
    53795379cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 
    53805380ac_cs_version="\\ 
    5381 onioncat config.status 0.2.2.r541 
     5381onioncat config.status 0.2.2.r542 
    53825382configured by $0, generated by GNU Autoconf 2.62, 
    53835383  with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" 
  • trunk/src/ocat.c

    r538 r542  
    282282            free(CNF(config_file)); 
    283283            CNF(config_file) = optarg; 
    284             CNF(config_read) = 0; 
    285284            break; 
    286285 
     
    431430 
    432431   if ((c = open(CNF(config_file), O_RDONLY)) == -1) 
     432   { 
    433433      CNF(config_failed) = errno; 
     434      CNF(config_read) = 1; 
     435   } 
    434436   else 
    435437      ctrl_handler((void*) (long) c); 
     438  
    436439 
    437440   urlconv = parse_opt(argc, argv); 
Note: See TracChangeset for help on using the changeset viewer.