From: Andre Noll Date: Sat, 4 Jul 2009 19:12:22 +0000 (+0200) Subject: command_util: Generate properly documented command header files. X-Git-Tag: v0.4.0~71 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=c00d7e25de7006d6f88aafb2b485057377a70324;ds=sidebyside command_util: Generate properly documented command header files. --- diff --git a/command_util.sh b/command_util.sh index 44b4ee18..a735d3c2 100755 --- a/command_util.sh +++ b/command_util.sh @@ -204,7 +204,11 @@ dump_proto() echo '/**' echo " * $desc_txt" echo ' *' - echo ' * \param rc4c The rc4 crypt context.' + if [[ "$system_includes" =~ openssl/rc4.h ]]; then + echo ' * \param rc4c The rc4 crypt context.' + else + echo ' * \param fd The file descriptor to send output to.' + fi if test $line_handler -eq 0; then echo ' * \param argc The number of arguments.' echo ' * \param argv The argument vector.'