Compaq C warns that "the expression 'p=scan_esc(p)' modifies the variable
authorAndy Polyakov <appro@openssl.org>
Tue, 6 Jun 2000 15:21:12 +0000 (15:21 +0000)
committerAndy Polyakov <appro@openssl.org>
Tue, 6 Jun 2000 15:21:12 +0000 (15:21 +0000)
commit9887c71c41a2bbae924f01e6cc1b41f2c5163a9e
treef1da8ecf553e7428ba254b6cce87524972324e02
parent62187daf9f7a6d24ca29fd5db87254cfc8169c76
Compaq C warns that "the expression 'p=scan_esc(p)' modifies the variable
'p' more than once without an intervening sequence point.  This behavior
is undefined." What it essentially complains about is 'p=p+=1'. Now it's
changed to 'p=p+1'...
crypto/conf/conf_def.c