Muss das nicht 

if (memcmp(userEntry, correctPassword, strlen(correctPassword)) != 0)

heissen??? (ist noch frueh hier also nicht schlagen!!!)

Viele Gruesse 


-----Original Message-----
From: Herbert Hahn [mailto:[EMAIL PROTECTED] 
Sent: sexta-feira, 28 de Mar�o de 2003 10:13
To: [EMAIL PROTECTED]
Subject: AW: [Coffeehouse] OT: Code quiz

so musste es ubrigens heissen:

if (memcmp(userEntry, correctPassword), strlen(userEntry)) != 0)
-------------------------------------^ dieser hat gefehlt

Erklarung fur die die nicht C sprechen:
also du vergleichst memcmp (= vergleichen von 2 strings ergebnis wenn
strings gleich sind ist NULL) mit der lange des strings wo allerdings auf
ungleich null lange gepruft wird und somit wiederum null geliefert wird.

Das ist aber ein klassiker. Darum liebe ich C, da findest Du solche Fehler
oft Tagelang nicht.

HH


> -----Ursprungliche Nachricht-----
> Von: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Auftrag von Bernhard Spuida
> Gesendet: Freitag, 28. Marz 2003 10:45
> An: [EMAIL PROTECTED]
> Betreff: [Coffeehouse] OT: Code quiz
>
>
> Tach!
>
> Mal wieder was zum Ablenken:
>
> Wieso ist dieser Passwort-check (in C) wirklich idiotisch?
>
>     gets(userEntry);
>      if (memcmp(userEntry, correctPassword,
> strlen(userEntry)) != 0)
>          return (BAD_PASSWORD);
>
> Cheers,
>
>                     Bernd
>
>
> This is a work of fiction. All the code portrayed in this mail is
> fictional, and any resemblance to real golf or production code is
> purely
> coincidental.
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~sponsored by United Planet~~~~~~~~~~~~~~~~~
> Kaffeepause im United Planet Communityserver ...
> http://www.intrexx.com/communityserver
> _______________________________________________
> Coffeehouse mailing list
> [EMAIL PROTECTED]
> http://www.glengamoi.com/mailman/listinfo/coffeehouse
>

~~~~~~~~~~~~~~~~~~~~~~~~~~~sponsored by United Planet~~~~~~~~~~~~~~~~~
Kaffeepause im United Planet Communityserver ...
http://www.intrexx.com/communityserver                         
_______________________________________________
Coffeehouse mailing list
[EMAIL PROTECTED]
http://www.glengamoi.com/mailman/listinfo/coffeehouse
~~~~~~~~~~~~~~~~~~~~~~~~~~~sponsored by United Planet~~~~~~~~~~~~~~~~~
Kaffeepause im United Planet Communityserver ...
http://www.intrexx.com/communityserver                         
_______________________________________________
Coffeehouse mailing list
[EMAIL PROTECTED]
http://www.glengamoi.com/mailman/listinfo/coffeehouse

Antwort per Email an