Notice: We have migrated to GitLab launching 2024-05-01 see here: https://gitlab.rtems.org/

Changes between Version 87 and Version 88 of Projects/OpenLDAP


Ignore:
Timestamp:
07/08/12 06:15:24 (12 years ago)
Author:
C Rempel
Comment:

/* network-demos/ldap/init.c */

Legend:

Unmodified
Added
Removed
Modified
  • Projects/OpenLDAP

    v87 v88  
    249249# the zeroth argument is the first argument passed to the function
    250250# have the last string be the empty string, to tell main that's the last argument
     251# pass the ''address of argv'' &argv to main
    251252 + #include <main.h>
    252253  rtems_task_Init(...)
     
    262263 + *argv[3]=&argv3;
    263264 ...
    264  + main(4, argv);
     265 + main(4, &argv);
    265266 ...
    266267==  network-demos/ldap/Makefile  ==